jQuery(document).ready(function() {
	jQuery("body").append("<div class='popoverlay'><div style='background-color:#323131' class='popbg'></div><img src='media/images/popoverlay.png'></div>");
	jQuery('.popoverlay, .popbg').css({zIndex:999,position:'absolute', top:0, left:0, width:jQuery(window).width(), height:jQuery(window).height()});
	jQuery('.popoverlay img').css({cursor:"pointer",zIndex:1000,position:'absolute',top:jQuery(window).height()/2-428/2, left:jQuery(window).width()/2-877/2})
	jQuery('.popbg').fadeTo(0,.88);
	jQuery('.popoverlay').live('click',function() { jQuery(this).fadeOut(.5,function() { jQuery(this).remove(); }) ; })	
});