DOM(function(){
	addEvent(getEl('candLoginButton'), "click", function(e){ LoginSel.Toggle(e); });
})

var LoginSel = {
	status : "none",	
	Toggle : function(e){
		this.status = (this.status == "none") ? "block" : "none";
		getEl('candLoginForm').style.display = this.status;
		StopEvent(e);
	}	
}
