$(document).ready(function(){

   //Adjust height of overlay to fill screen when page loads  
   $("#fuzz").css("height", $(document).height());
   $("#fuzz").css("width", $(document).width());    
   
    
   
   $("#quickquoteopen").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());
});

