// JavaScript Document

$(document).ready(function(){
						   
	// This initialises carousels on the container elements specified, in this case, carousel2.
	$("#carousel2").CloudCarousel(		
		{			
		minScale: 0.25,
		reflHeight: 30,
		reflGap:2,
		titleBox: $('#moments-title'),
		altBox: $('#moments-alt'),
		buttonLeft: $('#but1'),
		buttonRight: $('#but2'),
		xRadius:270,
		yRadius:75,
		xPos: 275,
		yPos: 25,
		autoRotate:'left',
		autoRotateDelay:8000,
		speed:0.15,
		mouseWheel:false
		}
	);
});

