	
	var menu1=new Array()
    menu1[0] = "<a href='reinstatement.php' class='first'><div>Reinstatement Plan</div></a>";
	menu1[1] = "<a href='repayment.php'><div>Repayment Plan</div></a>";
	menu1[2] = "<a href='loanmodification.php'><div>Loan Modifications</div></a>";
	menu1[3] = "<a href='loanrefinancing.php'><div>Loan Refinance</div></a>";
	menu1[4] = "<a href='loanforebearance.php'><div>Loan Forbearance</div></a>";
	menu1[5] = "<a href='partialclaim.php'><div>Partial Claim</div></a>";
	menu1[6] = "<a href='preforeclosuresale.php'><div>Pre-Foreclosure Sale</div></a>";
	menu1[7] = "<a href='shortsale.php'><div>Short Sale</div></a>";
	menu1[8] = "<a class='last' href='deedinlieu.php'><div>Deed-in-Lieu</div></a>";
	
	function validate()
	{
		var isvalid = true;
		$(".req").each(function() {
			if ($(this).val() == '') 
			{
				if (isvalid) alert("Please fill in all required fields.");
				isvalid = false;
			}
		});
		if (isvalid) return true;
		else return false;
	}
	
	function keepalive()
	{
		if (tk != '') clearTimeout(tk);
		$.ajax({
			type: "POST",
			url: "keepalive.php",
			success: function(resp) { }
		});
		tk = setTimeout("keepalive()",300000);
	}
	var tk = setTimeout("keepalive()",300000);