jQuery.fn.center=function(){this.css("position","absolute");this.css("top",($(window).height()-this.outerHeight())/2+$(window).scrollTop()+"px");this.css("left",($(window).width()-this.outerWidth())/2+$(window).scrollLeft()+"px");return this;}
function menu(m){$("li.top",m).mouseenter(function(){$("a",this).first().addClass("hover");$("ul",this).fadeIn("fast");});$("li.top",m).mouseleave(function(){$("a",this).first().removeClass("hover");$("ul",this).fadeOut("fast");});}
function hints(){var h="";$("input[alt^='hint']").each(function() {h=$(this).attr("alt").split(":");if($(this).val()==h[1])$(this).addClass("hint");$(this).focus(function(){h=$(this).attr("alt").split(":");if($(this).val()==h[1])$(this).val("");$(this).removeClass("hint");});$(this).blur(function(){h=$(this).attr("alt").split(":");if($(this).val()==""){$(this).val(h[1]);$(this).addClass("hint");}});});}
function login(){$(".overlay").show();$(".loginwrapper").fadeIn("fast").center();}
function loginClose(){$(".loginwrapper").fadeOut("fast");$(".overlay").hide();}
