$(document).ready(
	function(){
		$("#loginAccount").focus();
		$("#loginSubmit").click(
			function(){
				if($("#loginAccount").val().length > 0 && $("#loginPassword").val().length > 0)
					return true;
				else
					return false;
			}
		);
	}
);


