(function () 
{
	var carousel;
						
	YAHOO.util.Event.onDOMReady(function (ev) {
	var carousel = new YAHOO.widget.Carousel('container', {
								animation: { speed: 1 },
								describedby: 'my-carousel-label',
								numVisible: 2,
								autoPlayInterval: 5000,
								isCircular: true,
								revealAmount: 0
											 });
								
	carousel.render(); // get ready for rendering the widget
	carousel.show();   // display the widget
	carousel.startAutoPlay();
	});
})();