jQuery(document).ready(function(){
    jQuery('.shelf-content').hide();

    
    
   

    //Amount of slide check 
    var t;
    var timeout = 6000;
    function click_do(){
        t = setTimeout(function(){
            jQuery('#slider-nav .slider-right').click();
            click_do();
        },timeout);
    }
       click_do();

    
    
})