jQuery(window).load(function(){
//jQuery(document).ready(function(){
    jQuery('.gr_pcars').css("visibility", "visible");
    jQuery('.ob_pcars').css("visibility", "visible");

    jQuery('#pcars').cycle({ 
        fx:     'scrollHorz', 
        speed:   300, 
        timeout: 3000, 
        next:   '.next', 
        prev:   '.prev', 
        pause:   1 
    });
    
    jQuery(".productCarousel").jCarouselLite({
        btnNext: ".nextProduct",
        btnPrev: ".prevProduct",
        //easing: "backinout",
        auto: true,
        speed: 3000,
        visible: 2.33,
        start: 0,
        scroll: 1,
        vertical: true,
        beforeStart: function(a) {},
        afterEnd: function(a) {
           //alert("After animation ends:" + a);
       }        
    });
    jQuery(".productCarousel_static").jCarouselLite({
        auto: false,
        visible: 2.33,
        start: 0,
        vertical: true,
        beforeStart: function(a) {},
        afterEnd: function(a) {
           //alert("After animation ends:" + a);
       }        
    });
    jQuery(".colouringCarousel").jCarouselLite({
        btnNext: ".nextColour",
        btnPrev: ".prevColour",
        easing: "backinout",
        auto: false,
        speed: 900,
        visible: 2.5,
        start: 1.75,
        scroll: 1,
        vertical: true,
        beforeStart: function(a) {},
        afterEnd: function(a) {
           //alert("After animation ends:" + a);
       }        
    }); 
    
});


