// JavaScript Document

window.addEvent("domready", function() {
	new iCarousel("carousel_content", {
		idPrevious: "carousel_previous",
		idNext: "carousel_next",
		idToggle: "undefined",
		item: {
			klass: "carousel_item",
			size: 217 			/* size of carousel item in px 			*/
		},
		animation: {
			type: "scroll",
			duration: 450, 		/* wind on speed 						*/
			amount: 1, 			/* number of items to wind on 			*/
			rotate: { 
				type: "auto",	/* auto rotate (manual, auto)			*/
				interval: 4000  /* auto rotate delay in milliseconds	*/
			}
		}
	});
});