 $(document).ready(function(){
		
    		$("#thickbox").css("height", $(document).height());
    		

    		$(".alert").click(function(){
    		    $("#thickbox").fadeIn();    		    
    		    return false;
    		});
    		
    		$(".close").click(function(){
    			$("#thickbox").fadeOut();    		
    			return false;
			});
		
		});
		
		$(window).bind("resize", function(){
		 	$("#thickbox").css("height", $(window).height());
	});
