$(document).ready(function() {
	// focus on username
	document.login.username.focus();

	// slide down welcome
	$('#welcome').slideDown('slow');

	// on submit of forgotten password form remove login form fields else removed forgotten form fields
	$("#the_form").submit(function() {
		if($('#forgotten').val() == '1') {
			$('#form_login').html('');
		}
		else {
			$('#form_forgot').html('');
		}
	});
});

function forgot() {
	document.getElementById('forgotten').value = '1';
	$('#form_login').slideUp('normal', function(){
		$('#form_forgot').slideDown(function() {
			document.login.email.focus();
		});
	});
}

function login() {
	document.getElementById('forgotten').value = '';
	$('#form_forgot').slideUp('normal', function(){
		$('#form_login').slideDown(function() {
			document.login.username.focus();
		});
	});
}