$(document).ready(function(){
	$("#loginbox").hide();
	$("#lostpasswordbox").hide();
});

function showLoginBox() {
	$("#lostpasswordbox").hide();
	$("#loginbox").show();
}

function showLostPasswordBox() {
	$("#loginbox").hide();
	$("#lostpasswordbox").show();
}
