		function showLoginAlert() {	
			$("#loginAlertLink").show();
			// "Close" link within alert text
			$("#loginAlertText a").click(function(){
				$("#loginAlertText").hide();
				return false;
			});
			// show the alert text
			$("#loginAlertLink a").click(function(){
				$("#loginAlertText").show()
			.css({left: $("#loginAlertLink").offset().left,top: $("#loginAlertLink").offset().top + 14});
				return false;
			});
			
			}
