var carousel, carousel2;

var pageLoad = function()
{
        carousel = new Carousel("mycarousel",
                { prevElement:"prev-arrow", nextElement:"next-arrow", size:50, numVisible:5, scrollInc:5, revealAmount:0  });
	carousel2 = new Carousel("mycarousel2", 
                        { prevElement:"prev-arrow2", nextElement:"next-arrow2", size:21, numVisible:7, scrollInc:4, revealAmount:0 });

        //carousel2 = new Carousel("mycarousel2",
         //       { prevElement:"prev-arrow2", nextElement:"next-arrow2", size:9, numVisible:5, scrollInc:4, revealAmount:0 });

};

YAHOO.util.Event.addListener(window, 'load', pageLoad);

