$(document).ready(function(){
      
    $('.homepageCover').hover(function(){
        $('#homeTextVisibleOnHover').stop().animate({
            "opacity": "1"
        }, "normal");
          
    },
    function(){
      $('#homeTextVisibleOnHover').stop().animate({
            "opacity": "0"
        }, "normal");
        });
      
  
    $('#bodyWrapper').fadeIn(900);
    



});


