window.addEvent('domready', function(){
	
	if($('showlogin')){
		
		$('showlogin').addEvent('click', function(e){
			$('loginform').removeClass('hide');
			$('choice').addClass('hide');
			$('username').focus();
			$(document.body).removeClass('login');
		});
		
	}
	
});
