function hideScreenAndOverlay() {
	$("#best-of-maiden-lane-overlay").css({"top": "-9999px", "left": "-9999px"});
	$("div.screen").remove();
}

function createScreen(color, opacity) {
	$("body").append("<div class='screen'></div>");
	var htop = $("#header").offset().top;
	var height = $("#header").outerHeight(true);
	var width = $("#header").outerWidth(false);
	//alert(height);
	//alert(width);
	var ftop = $("#footer").offset().top;
	var fheight = $("#footer").outerHeight(true);
	//alert(ftop);
	var cssprop = {"position": "absolute", "z-index" : 100, "top" : ((htop+height) + "px"), "left" : "0px", "background-color": color};
	$("div.screen").css(cssprop);
	$("div.screen").height(ftop + fheight - htop - height);
	$("div.screen").width(width);
	
	function showOverlay() {
		var overlay_w = $("#best-of-maiden-lane-overlay").outerWidth();
		var overlay_left = (width-overlay_w)/2;
		$("#best-of-maiden-lane-overlay").css({"display":"none", "top":((htop+height) + "px"), "left": (overlay_left + "px")});
		$("#best-of-maiden-lane-overlay").fadeIn(1000);
	}
	
	$("div.screen").fadeTo("fast",opacity, showOverlay);
	$("div.screen").click(hideScreenAndOverlay)
	
}

