if (jQuery) {
	$(function() {
		$("#loginMenu").hover(function() {
			$("#loginBox").animate({
				height:		"show",
				speed:		"slow",
				opacity:	"show"
			}).css("visibility", "visible");
			
			$("#username").focus();
		});
		
		$("#closeLogin").click(function() {
			$("#loginBox").animate({
				height:		"hide",
				speed:		"fast",
				opacity:	"hide"
			});
		}).css("cursor", "pointer");
	});
}
