$(document).ready(function(){
    function showNext( element, eq ){
        if ( $(element).size() >= eq ){
            $(element+':eq('+eq+')').fadeIn(550, function(){
                if ( $(element).size() != eq ){
                    showNext( element, (eq+1) );
                }
            });
        }
    }
        $('#channel-index li.sh').hide();
        setTimeout(function(){
            showNext('#channel-index li.sh', 0);
        }, 400 );
		
    function showNext2( element, eq ){
        if ( $(element).size() >= eq ){
            $(element+':eq('+eq+')').fadeIn(250, function(){
                if ( $(element).size() != eq ){
                    showNext2( element, (eq+1) );
                }
            });
        }
    }
        $('.catalogue li').hide();
        setTimeout(function(){
            showNext2('.catalogue li', 0);
        }, 150 );

	$('.up').click(function() {
		$('body,html').animate({scrollTop:0},800);
	});	
});


