function showLoginLander() {
	$('#ViewTwo').hide();
	$('#ViewOne').show();
	$('#ViewThree').hide();
	$('#ViewFour').hide();
	}


function showLogin() {
	$('#ViewTwo').show();
	$('#ViewOne').hide();
	$('#ViewThree').hide();
	$('#ViewFour').hide();
	}

function showRegister() {
	$('#ViewThree').show();
	$('#ViewOne').hide();
	$('#ViewTwo').hide();
	$('#ViewFour').hide();
	}		

function showForgotPassword() {
	$('#ViewThree').hide();
	$('#ViewOne').hide();
	$('#ViewTwo').hide();
	$('#ViewFour').show();
	}		

function showTerms() {
	$('#termsBox').show();
	}		

function hideTerms() {
	$('#termsBox').hide();
	}
	

function hideLogin() {
	$('#loginCanvas').hide();
	showLoginLander();
	}
	
function showLoginCanvas() {
	$('#loginCanvas').show();
	}

 
