$(function() {

        $('.btnLeft').hide();  
        $('.btnRight').hide();
        
        var myCarousel = $(".jMyCarousel");
        myCarousel.jMyCarousel({
                        visible: '100%',
                        auto: true,
                        speed: 1500,

                        btnPrev: $('.btnLeft'),
                        btnNext: $('.btnRight')

        });
        if(myCarousel.get(0) && myCarousel.get(0) != 'undefined'){
                $('.btnLeft').show();  
                $('.btnRight').show();
        }


        $('li', myCarousel).hover(
                function() { myCarousel.jMyCarouselStop();},
                function() { myCarousel.jMyCarouselStart();}
        );

        // hide all disabled elements
        $('li.disabled A', $('.carusel')).click(function(){return false;});
        $('li.disabled A', $('.carusel')).css('cursor', 'text');
});

