window.addEvent("domready", function() {   
    new iCarousel("example_3_content", {   
        idPrevious: "example_3_previous",   
        idNext: "example_3_next",   
        idToggle: "undefined",   
		animation: {
			type: "scroll",// fadeNscroll, scroll, fade
			direction: "left",// if type = scroll, set: top || left
			amount: 1,// if type = scroll, set the amount to scroll
			transition: Fx.Transitions.Cubic.easeInOut,
			duration: 1000,
			rotate: {
				type: "auto",// auto || manual
				interval: 1500,// if type = auto, set the interval (ms)
				onMouseOver: "stop"// if type = auto, set the onmouseover behavior: stop || proceed
			}
		},
		item: {
			klass: "example_3_item",
			size: 98
		}
    });   
});   