// NAVIGATION MENU 
//		for www.GoWilkes.com

var sCurrentURL = location.href;

var names = new Array (
	"HOME",
	"CLASSIFIEDS",
	"DISCUSSIONS",
	"LOCAL INTEREST",
	"SERVICES",
	"MEMBERS ONLY"
);

var url = new Array (
	homeURL,
	homeURL + "/classifieds/",
	homeURL + "/discussions/",
	homeURL + "/local/",
	homeURL + "/services/",
	homeURL + "/cgi-bin/login.cgi"
);

if (screen.width >= 1024) url[0] = homeURL + "/1/";


// FIND LOCATION 
var whereis;

	// Home 
if (
	(sCurrentURL == homeURL) ||
	(sCurrentURL == homeURL + "/") ||
	(sCurrentURL == homeURL + "/1") ||
	(sCurrentURL == homeURL + "/1/") ||
	(sCurrentURL == homeURL + "/index.php") 
) whereis = 0

	// Classifieds 
else if (sCurrentURL.indexOf("classifieds") != -1) whereis = 1

	// Community Voice 
else if (sCurrentURL.indexOf("voice") != -1) whereis = 2

	// Personals 
else if (sCurrentURL.indexOf("local") != -1) whereis = 3

	// Weather 
else if (sCurrentURL.indexOf("services") != -1) whereis = 4

	// What's Happening 
else if (sCurrentURL.indexOf("members") != -1) whereis = 5


// PRINT TO SCREEN 
document.write("<table cellpadding='1' cellspacing='0' border='0' width='760'>")
document.write("<tr valign='middle'>")

for (var count=0; count < names.length; count++) {
	if (count == whereis) {
		document.write("<td align='center' bgcolor='#FFFFF8'>")
		document.write("<font face='Arial, Helvetica, sans-serif' color='#000000' size='-1' class='small'>")
		document.write("<b>" + names[count] + "</b>")
		document.write("</font>")
		document.write("</td>")
	}

	else {
		var loc = "changeColor" + count;

		if (count != 5) var borderStyle = "border-right: 1px solid #FFFFFF"
		else var borderStyle = ""

		document.write("<td align=\"center\" onMouseOver=\"this.style.backgroundColor='#FFFFF8'; " + loc + ".style.color='#000000'; this.style.cursor='hand'\" onMouseOut=\"this.style.backgroundColor='#000000'; " + loc + ".style.color='#FFFFFF';\" onClick=\"window.location.href='" + url[count] + "';\" style=\"" + borderStyle + "\">");
		document.write("<a href=\"" + url[count] + "\" class=\"menu\">");
		document.write("<font face=\"Arial, Helvetica, sans-serif\" color=\"#FFFFFF\" size=\"-1\" class=\"small\" id=\"" + loc + "\">");
		document.write("<b>" + names[count] + "</b>");
		document.write("</font>");
		document.write("</a>");
		document.write("</td>");
	}
}

document.write("</tr>")
document.write("</table>")
