// JavaScript Document

function loginInit(){
	var count = 1;
	while(document.getElementById('login'+count)){
			var login = document.getElementById('login'+count);
			var r = login.getElementsByTagName('a');
			for(var i = 0; i < r.length; i++){
				r[i].onclick = displayLogin;
			}
		count++;
		}
		
	if(document.getElementById('login-close-button')){
		document.getElementById('login-close-button').onclick = hideLogin;
	}
}

function displayLogin(){
	if(document.getElementById('login-popup')){
		document.getElementById('login-popup').style.display = 'block';
	}
	return false;
}
function hideLogin(){
	if(document.getElementById('login-popup')){
		document.getElementById('login-popup').style.display = 'none';
		//document.getElementById('cover').style.display = 'none';
	}
	return false;
}

addLoadEvent(loginInit);
