
$(document).ready(
	function(){
		$("a#hideLoginAlertAction").click(function () { 
			$("div#alert_container").fadeOut("slow");
		});
		$(".showLoginAlertAction").click(function () {
			$("div#alert_container:hidden").insertBefore($(this).parent().parent().parent());
			$("div#alert_container:hidden").fadeIn("slow");
			visible = true;
		});
	}
);


