function showLoginForm()
{
	$('body').append('<div class="shadowscreen"></div>');
	$('.shadowscreen').hide().fadeIn('slow');	
	$('.shadowscreen').click(function(){
		$('.loginform').fadeOut('slow', function(){$('.loginform').remove();});
		$(this).fadeOut('slow', function(){$(this).remove();});
	});

	$('body').append('<div class="loginform"></div>');
	$('.loginform').hide();
	$('.loginform').load('/?ajax=loginform', {}, function(){$(this).fadeIn('slow');});
	return false;
}

$(document).ready(function(){
	$("#enterbutton").click(showLoginForm);
});