$(document).ready(function(){

	$("#dim").css("height", $(document).height());
	
	$(".alert").click(function(){
		$("#dim").fadeIn();
		document.getElementById("code").focus();
		return false;
	});
	
	$(".close").click(function(){
		$("#dim").fadeOut();
		return false;
	});
	

});

$(window).bind("resize", function(){
	$("#dim").css("height", $(window).height());
});
