$(function(){
				jQuery.fn.center = function () {
    				this.css("position","absolute");
    				this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
    				this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
    				return this;
				}
				
				$("#closeme_legal").mouseover(function(e){$(this).css("cursor","pointer")});
				$("#closeme_credits").mouseover(function(e){$(this).css("cursor","pointer")});
				$("#legal").mouseover(function(e){$(this).css("cursor","pointer")});
				$("#credits").mouseover(function(e){$(this).css("cursor","pointer")});
				
				$("#legal").click(function(){
					$("#div_legal").center().show("slow");
				});
				$("#closeme_legal").click(function(){
					$("#div_legal").hide("slow");
				});
				
				$("#credits").click(function(){
					$("#div_credits").center().show("slow");
				});
				$("#closeme_credits").click(function(){
					$("#div_credits").hide("slow");
				});
				
});