/**
* @author Remy Sharp
* @url http://remysharp.com/2007/01/25/jquery-tutorial-text-box-hints/
*/
(function(c){c.fn.hint=function(a){a||(a="blur");return this.each(function(){function d(){this.value===e&&b.hasClass(a)&&b.val("").removeClass(a)}var b=c(this),e=b.attr("title"),f=c(this.form),g=c(window);if(e){b.blur(function(){this.value===""&&b.val(e).addClass(a)}).focus(d).blur();f.submit(d);g.unload(d)}})}})(jQuery);
$("input[title!='']").hint();

$("a.blank").attr("target", "_blank");


$("#body header").delegate("a", "mouseover mouseout", function(e){
	$(this).stop().animate({ marginTop:(e.type === "mouseover" ? "-5" : "0") + "px" }, { duration:175, queue:false });
});

