$(document).ready(function(){
    var param = window.location.href.slice(window.location.href.indexOf('#'));
    if(param == "#home"){
        $(".hello").hide();
        $("#sidebar").show();
        $(".footer").show();
        $(".block_cat").show();
    }
    else{
        $(".hello").click(function(){
            $(this).fadeOut(1000, function () {
            $(this).remove();
            $("h1").fadeIn(1000);
            $("#sidebar").fadeIn(1000);
            $(".footer").fadeIn(1000);
            $(".block_cat").fadeIn(1000);
          });
      
});
}
    //To switch directions up/down and left/right just place a "-" in front of the top/left attribute  
    //Vertical Sliding  
    $('.child_cat').hover(function(){  
        $(".cover", this).stop().animate({top:'50px'},{queue:false,duration:400});  
    }, function() {  
        $(".cover", this).stop().animate({top:'130px'},{queue:false,duration:400});  
    });
    });

