// Initialize Product Carousel for Product Page
//** Created: Gary Raberov
//** Aug 25th, 08


function SetupProductCarousel(MyCarouselId, Vertical)
{
    jQuery(document).ready(function() {
        
        jQuery('#'+MyCarouselId).jcarousel({
            // Configuration goes here
            // itemLoadCallback: itemLoadCallbackFunction
            vertical: Vertical,
            scroll: 1,
            animation: "slow"
        });
    });
}

// for Ajax to register with script manager
if( Sys && Sys.Application ){
   Sys.Application.notifyScriptLoaded();
} 
