// mainmenu.js

var sPath = window.location.pathname;
var sDeli = '\\';
var sPage = sPath.substring(sPath.lastIndexOf(sDeli) + 1);

sRoot = "/";

//alert("sPage:" + sPage + "\nsRoot:" + sRoot);

if ((sPage != sRoot + "index.htm") && (sPage != sRoot)) {document.write("&nbsp;<a href='/index.htm'>Home</a>");}
else {document.write('&nbsp;<span class="selectedMain">Home</span>');}
document.write(' <span class="gray">|</span> ');

// hardy palm pages
if ((sPage != sRoot + "Nritchiana/index.htm") &&
	(sPage != sRoot + "Rhystrix/index.htm") &&
	(sPage != sRoot + "Sminor/index.htm") &&
	(sPage != sRoot + "Srepens/index.htm") &&
	(sPage != sRoot + "Tfortunei/index.htm") &&
	(sPage != sRoot + "Tlatisectus/index.htm") &&
	(sPage != sRoot + "Ttakil/index.htm") &&
	(sPage != sRoot + "Twagnerianus/index.htm"))
{
	document.write('<a href="/Rhystrix/index.htm">Hardy Palms</a>');
}
else
{
	document.write('<span class="selectedMain">Hardy Palms</span>');
}
document.write(' <span class="gray">|</span> ');

// photo pages
if (sPage.indexOf("photos.htm") < 0 && sPage.indexOf("display.htm") < 0 )
{
	document.write('<a href="/Rhystrix/photos.htm">Photo Gallery</a>');
}
else
{
	document.write('<span class="selectedMain">Photo Gallery</span>');
}
document.write(' <span class="gray">|</span> ');

if (sPage != sRoot + "USDAZoneMaps.htm") {document.write('<a href="/USDAZoneMaps.htm">USDA Zone Maps</a>');}
else {document.write('<span class="selectedMain">USDA Zone Maps</span>');}
document.write(' <span class="gray">|</span> ');

if (sPage != sRoot + "ColdHardyPalmList.htm") {document.write('<a href="/ColdHardyPalmList.htm">Cold-Hardy Palm List</a>');}
else {document.write('<span class="selectedMain">Cold-Hardy Palm List</span>');}
document.write(' <span class="gray">|</span> ');

if (sPage != sRoot + "WinterProtection.htm") {document.write('<a href="/WinterProtection.htm">Winter Protection</a>');}
else {document.write('<span class="selectedMain">Winter Protection</span>');}
document.write(' <span class="gray">|</span> ');

if (sPage != sRoot + "PublicSightings.htm") {document.write('<a href="/PublicSightings.htm">Public Sightings</a>');}
else {document.write('<span class="selectedMain">Public Sightings</span>');}
document.write(' <span class="gray">|</span> ');

if (sPage != sRoot + "PalmSources.htm") {document.write('<a href="/PalmSources.htm">Palm & Seed Sources</a>');}
else {document.write('<span class="selectedMain">Palm & Seeds Sources</span>');}
document.write(' <span class="gray">|</span> ');

if (sPage != sRoot + "PalmLinks.htm") {document.write('<a href="/PalmLinks.htm">Palm Links</a></strong></font>');}
else {document.write('<span class="selectedMain">Palm Links</span>');}


