
window.addEvent("domready", function() {
	
	
	if (document.getElementById('carousel_content'))
	{
		
		new iCarousel("carousel_content", {
			
			idPrevious: "carousel_previous",
			idNext: "carousel_next",
			idToggle: "undefined",
		
			
			item: {
				klass: "carousel_item",
				size: 210
			},
			animation: {
				duration: 500,
				amount: 3
			}
		});
		
	}
	
});
		
			