
$(document).ready(function(){ 
    jQuery(".picFadeIn").load(function(){ 
        jQuery(this).fadeOut(0, function(){ 
            jQuery(this).fadeIn(2000); 
        }); 
    }); 
});


$(document).ready(function(){
	$('.picFade').fadeIn('slow');
});


function goToByScroll(id){
	$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}


$(document).ready(function(){  
   	$(".imgBox i").css("opacity","0.0")
	$(".imgBox").hover(
      function () {
        $(this).children("i").animate({ 
        height: "14px",
        opacity: 0.8
      	}, 300 );
      }, 
      function () {
        $(this).children("i").animate({ 
        height: "0px",
        opacity: 0.0
      	}, 200 );
      }
    );
   
});
