var absPath = "http://www.germanamericanday.org/";
function writeNavbar(current){
	
	var myArray = new Array();
	myArray["Home"] = 'index.html';
	myArray["Schedule"] = "schedule.html";
	myArray["Prost"] = "prost.html";
	myArray["Media"] = "media.html";
	myArray["Sponsors"] = "sponsors.html";
	myArray["Photos"] = "photos.html";
	myArray["Links"] = "links.html";
	myArray["Contact"] = "contact.html";	myArray["Store"] = "http://www.cafepress.com/GADPHL";
	var myClass = "";
 document.write('<ul>\n');
 for (myPage in myArray){
	 if (current == myPage.toString()){
		myClass = "current"; 
	 }else{
		myClass = ""; 
	 }	var dest = myArray[myPage].indexOf("http") == -1 ? absPath + myArray[myPage] : myArray[myPage];
	var myString = '<li><a href="' + dest + '"class="'+ myClass +'"><span>'+ myPage.toString() + '</span></a></li>\n' 
	document.write(myString);
 }
 document.write('		</ul>');
}

function writeHeader(){
	document.write('<img src="http://germanamericanday.org/images/headerLogo.png"/>');

}