//Menu for older browsers
<!--//--><![CDATA[//><!--
sfHover = function() {
	var sfEls = document.getElementById("wnhsNav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
//--><!]]>

//BreadCrumbs
function crumbs(){
	sURL = new String;
	bits = new Object;
	var x = 0;
	var stop = 0;
	var output = "<a class=\"crumbs\" HREF=\"/\">Home</a>"; 
	var output2 = "<a class=\"crumbs\" HREF=\"/\">Home</a>"; 
	sURL = location.href;
	<!--slice the first 8 digits of the front of the URL - removes http:// or shttp://-->
	sURL = sURL.slice(8,sURL.length);
	chunkStart = sURL.indexOf("/");
	<!--miss the first slash-->
	sURL = sURL.slice(chunkStart+1,sURL.length)
	while(!stop){
		chunkStart = sURL.indexOf("/");
		if (chunkStart != -1){
			bits[x] = sURL.slice(0,chunkStart)
			sURL = sURL.slice(chunkStart+1,sURL.length);
		} else {
			stop = 1;
		}
		x++;
	}
	<!--first output-->
	for(var i in bits){
		output += " &raquo; <a class=\"crumbs\" HREF=\""; 
		for(y=1;y<x-i;y++){
		<!--adds ../ to the end of output (LINK)-->
			output += "../";
		}
		<!--adds folder name to link name-->
		output += bits[i] + "/\">" + bits[i] + "</a>";
	}
	
	<!--2nd output - loops through all folders except for the last slash-->
	var a = i;
	var b = 0 ;		
	while(b<a){	
			output2 += " &raquo; <a class=\"crumbs\" HREF=\""; 
			for(y=1;y<x-b;y++){
				output2 += "../";
			}
			output2 += bits[b] + "/\">" + bits[b] + "</a>";			
		b++;
	}

	var thisURL = location.href;
	<!--finds the last slash plus 1-->
	var pURL = thisURL.lastIndexOf("/");
	var slURL = pURL+1
	<!--strips everything before last slash-->
	pURL = thisURL.slice(thisURL, -slURL);
	<!--if we're left with index or nothing, use output 2-->
	if (thisURL.indexOf("index.htm") != -1 || thisURL.indexOf("index.php") != -1 || pURL == "") {
		var title_array=document.title.split("-");
		document.write(output2 + " &raquo; " + title_array[0]);		
	} else {
		<!--if we're using 1, grab the title to first hyphen-->
		var title_array=document.title.split("-");
		output += " &raquo; ";
		document.write(output + title_array[0]);
	}
}