//init. homepage JS
$(document).ready(function() { 

$('ul.carouselList').cycle({ 
    fx:    'scrollLeft', 
    speed:  500,
	timeout: 6000 
 });
 
 if($('ul.carouselList').length==1){
 	$('ul.carouselList li').show();
 }

});
