// JavaScript Document

function login(showhide){
	if(showhide == "show"){
		document.getElementById('login').style.visibility="visible"; /* If the function is called with the variable 'show', show the login box */
		document.getElementById('login-menu').href="javascript:login('hide');"; 
		document.getElementById('login-li').setAttribute("class", "a-selected");
		document.getElementById('login-menu').firstChild.nodeValue="(click to close)";
	}else if(showhide == "hide"){
		document.getElementById('login').style.visibility="hidden"; /* If the function is called with the variable 'hide', hide the login box */
		document.getElementById('login-menu').href="javascript:login('show');"; 
		document.getElementById('login-li').setAttribute("class", "");
		document.getElementById('login-menu').firstChild.nodeValue="Member Login";	 
	}
}

