    $(function () {
        $('marquee').marquee()
	});
	$(document).ready(function(){
							   
		// This initialises carousels on the container elements specified, in this case, carousel1.
		$("#carousel1").CloudCarousel(		
			{			
				xPos: 364,
				yPos: 32,
				autoRotate: 'left',
				mouseWheel: true,
				reflHeight: 50,
				FPS: 15,
				speed: 0.1,
				autoRotateDelay: 2000
			}
		);
	});
	 function toggleThis(item,type)
	 {
		var currentpath = item.src;
		if (type==1)
		{
			item.src = currentpath.replace("-off","-on");
		} else {
			item.src = currentpath.replace("-on","-off");
		}
	 }

