
var path = "";
if ((new String(document.location)).valueOf().indexOf("/WebForms/"))
	path = (new String(document.location)).valueOf().substr(0, (new String(document.location)).indexOf("/WebForms/") + 1);

document.writeln("<div id=\"menu\">");
document.writeln("<ul>");
document.writeln("<li><a href=\"" + path + "index.html\">Message from the Patriarch</a></li>");
document.writeln("<li><a href=\"" + path + "faq.html\">FAQs</a></li>");
document.writeln("<li><a href=\"" + path + "loans.html\">Loans</a></li>");
document.writeln("<li><a href=\"" + path + "grants.html\">Grants</a></li>");
document.writeln("<li><a href=\"" + path + "investments.html\">Investments</a></li>");
document.writeln("<li><a href=\"" + path + "WebForms/Donations.aspx\">Donations</a></li>");
document.writeln("<li><a href=\"" + path + "links.html\">Links</a></li>");
document.writeln("<li><a href=\"" + path + "contact.html\">Contact Information</a></li>");
document.writeln("</ul>");
document.writeln("</div>");

