$(document).ready(function() {
 // This initialises carousels on the container elements specified, in this case, carousel1.
	$("#carousel1").CloudCarousel(		
		{			
			xPos: 400,
			yPos: 90,
			buttonLeft: $("#buttonLeft"),
			buttonRight: $("#buttonRight"),
			autoRotate: 'right',
            autoRotateDelay: 5000,
            speed: 0.1,
            reflHeight: 50,
            reflOpacity: 0.5,
            xRadius: 400,
            yRadius: 80,
            mouseWheel: true 
		}
	); 
    
    
}); // конец ready
