var menuWidth = "150px";

createMainMenuItem("Opportunity", "16", "#E3BBAE", "#AA332F", "opportunity.html");
createMainMenuItem("Your Partner", "16", "#E3BBAE", "#941B1D", "yourPartner.html");
createMainMenuItem("Current Investors", "16", "#E3BBAE", "#701416", "currentInvestors.asp");
createMainMenuItem("Questions & Answers", "15", "#E3BBAE", "#4F0D0B", "questionsAndAnswers.html");
createMainMenuItem("Contact Us", "16", "#E3BBAE", "#320E0F", "contactUs.html");
createMainMenuItem("Login", "16", "#E3BBAE", "#040607", "login.asp");

function goToLink(link){
	document.location.href = link;
}

function createMainMenuItem(name, padding, forecolor, bgcolor, link){
	document.write("<table cellspacing='0' cellpadding='0' border='0' style='left: 0px; top: 0px; width: " + menuWidth + ";'>");
		document.write("<tbody>");
			document.write("<tr style='cursor: hand;'>");
				document.write("<td onClick='document.location.href=\"" + link + "\";' valign='middle' style='cursor: pointer; background-color: " + bgcolor + "; padding: " + padding + "px; font-family: Verdana; font-style: normal; font-variant: normal; font-weight: normal; font-size:11px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; width: " + menuWidth + "; color: " + forecolor + ";'>");
					document.write("<a style='color: " + forecolor + "; text-decoration: none;' href='" + link + "'>");
					document.write("<center>" + name + "</center>");
					document.write("</a>");
				document.write("</td>");
			document.write("</tr>");
		document.write("</tbody>");
	document.write("</table>");
}


