(function () {
var carousel;
YAHOO.util.Event.onDOMReady(function (ev) {
carousel = new YAHOO.widget.Carousel("homegallery-carousel", {
// specify number of columns and number of rows
numVisible: [3, 2]
});
carousel.render(); // get ready for rendering the widget
carousel.show(); // display the widget
});
})();