(function() {
YAHOO.util.Event.onContentReady("Featured", function() {
		var carousel = new YAHOO.widget.Carousel("featured-items-carousel", {
                isCircular: true, // for a circular Carousel
                numVisible: 1,
	            autoPlayInterval: 8000,
                animation: { speed: 0.5 }
            });
        carousel.render();
        carousel.show(); // display the widget
        carousel.startAutoPlay();
    });
})();
