<!--
function writeHeader( currentPage )
{
	var pages = new Array();
	pages["home"] = "home.html";
	pages["music"] = "music.html";
	pages["news"] = "news.html";
	pages["schedule"] = "schedule.html";
	pages["photos"] = "photos.html";
	pages["about"] = "about.html";
	pages["contact"] = "contact.html";
	
	document.write("<div id=\"SuperContainer\">");
	document.write("<div id=\"HeaderContainer\">");
	document.write("<div id=\"TitleContainer\"><h1><a href='http://kylewelch.com'>KyleWelch.com</a></h1></div>");
	document.write("<div id=\"SiteMenuContainer\">");
	document.write("<ul id=\"SiteMenu\">");


	for ( var testKey in pages )
	{
		
            if ( testKey == "home" || testKey == "music" || testKey == "news" ||
		 testKey == "schedule" || testKey == "photos" || testKey == "about" ||
		 testKey == "contact" )
	    {    
		if ( currentPage != testKey )
			document.write("<li><a href=\""+pages[testKey]+"\">"+testKey+"</a></li>");
		else
			document.write("<li>"+testKey+"</li>");
	    }
	}
	document.write("</ul></div></div>\n");	
}

function writeFooter()
{
	document.write("<div id=\"FooterContainer\">");
	document.write("&copy; Copyright 2005 Kyle Welch. All rights reserved.");
	document.write("</div></div>");
	document.write("<div id=\"CreatorNoticeContainer\"><span class=\"CreatorNotice\">");
	document.write("Site created and maintained by <a href=\"http://www.neural9.com\" target=\"_blank\" title=\"Neural 9 Studios\">" ); 
    document.write("<img src=\"includes/images/neural9-icon.png\" alt=\"Neural 9\" title=\"Neural 9 Studios\" width=\"32\" height=\"32\" border=\"0\" /></a></span></div>");
}
-->