function init() {
			
	
	 var carousel = new YAHOO.widget.Carousel("models", {
                        animation: { speed: 0.5 },
                        isCircular: true,
                        numVisible: 1
                        
                });
                        
            carousel.render(); // get ready for rendering the widget
            carousel.show();   // display the widget
	
}

YAHOO.util.Event.onDOMReady(init);