$(document).ready(function(){  

  

   //Adjust height of overlay to fill screen when page loads  

   $("#fuzz").css("height", $(document).height());  

  

   //When the link that triggers the message is clicked fade in overlay/msgbox  

   $(".alert").click(function(){  

      $("#fuzz").fadeIn();  

      return false;  

   });  

  

   //When the message box is closed, fade out  

   $(".close").click(function(){  

      $("#fuzz").fadeOut();  

      return false;  

   });  


});  

  

//Adjust height of overlay to fill screen when browser gets resized  

$(window).bind("resize", function(){  

   $("#fuzz").css("height", $(window).height());  

});
