function topbar() {
document.write("<link rel='stylesheet' type='text/css' href='/style.css'/>")
var rootURL= "";
document.write("<TABLE><tr>");
document.write("<td><img src='LogoSmall.jpg'></td>");
document.write("<td valign='bottom'><TABLE border='0' cellpadding='5'><tr><td></td>");
AddMenuItem("index.html", "Home", rootURL + "index.html");
AddMenuItem("experience.html", "Experience", rootURL + "experience.html");
AddMenuItem("NotObvious", "Not Obvious", rootURL + "NotObvious.html");
AddMenuItem("Contact", "Contact", rootURL + "Contact.html");
document.write("</tr></TABLE>");
document.write("</td></tr></TABLE>");
} //end function topbar

function AddMenuItem(Location, Description, URL)
{
	if(document.location.href.search("/" + Location) != -1)
	{
		document.write("<TD  class='sidebarselected' onclick='document.location.href=\"" + URL + "\"'><b>" + Description + "</b></TD>");
	} else {
		document.write("<TD class='sidebar' onclick='document.location.href=\"" + URL + "\"'>" + Description + "</a></TD>");
	}
}//end function AddMenuItem

topbar();