// JavaScript Document
// Menu file

function make_header() {
	document.write("");
}

function make_menu() {
	document.write("<a href=\"/index.html\">Home</a>");
	document.write("<a href=\"/bio.html\">Bio</a>");
	document.write("<a href=\"/results.php\">Race results</a>");
	document.write("<a href=\"/images/riding/index.php\">Picts \/ vids</a>");
	document.write("<a href=\"/sponsors.html\">Sponsors</a>");
	document.write("<a href=\"/press.html\">Press</a>");
	document.write("<a href=\"/oftheday.php\">Blog</a>");
	document.write("<a href=\"/events.html\">Upcoming events</a>");
	document.write("<a href=\"/contact.html\">Contact</a>");
	document.write("<a href=\"/links.html\">Links</a>");
}

function change_photoimage (whichname,whichpic) { 
	if (document.getElementById) { 
		document.getElementById('thename').childNodes[0].nodeValue = whichname; 
		document.getElementById('theimage').src = whichpic; 
		document.getElementById('theimage').alt = whichname; 
		return false; 
	} 
}

// preload original image to show when the page loads
var menu_over= new Image();
menu_over.src="/images/buttons-test-over.gif";

function ShowPicture(whichpicture,whichname) {
	document.getElementById('portfolioPictureMain').src = whichpicture;
	if (whichname == "") {whichname = "pictures";} 
	document.getElementById('imageNameField').childNodes[0].nodeValue = whichname;
}
