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

});
