function styleMe() {
	for(var i=0; i< document.links.length; i++) {
		//alert("/" + document.links[i].pathname + " == " + window.location.pathname + " == " + document.links[i].pathname + "index.html");
		if ( (document.links[i].pathname == window.location.pathname) || (("/" + document.links[i].pathname) == window.location.pathname) || (document.links[i].pathname == window.location.pathname + "index.html") || (("/" + document.links[i].pathname) == window.location.pathname + "index.html") ) {
			document.links[i].className="selected";
		}
	}		 
}