<!-- begin
var path;
var agt=navigator.userAgent.toLowerCase();
var is_mac   = (agt.indexOf("mac")!=-1); 
var is_os2   = ((agt.indexOf("os/2")!=-1) || 
                    (navigator.appVersion.indexOf("OS/2")!=-1) ||   
                    (agt.indexOf("ibm-webexplorer")!=-1));
var is_linux = (agt.indexOf("linux")!=-1);

if (is_mac) { 				// Macintosh
	path = '..\\';
} else if (is_os2) { 		// OS2
	path = '..\\';
} else if (is_linux) { 		// Linux
	path = '..\\';
} else { 
	path = '..\/';
}
document.write("<div id='background'>");
document.write("<div id='header'>");
document.write("<p><table height='25px' align='center'>");
document.write("<tr>");
document.write("<td class=button><a class=menu href='"+path+"home.html'>Home Page</a></td>");
document.write("<td width='5'>&nbsp;</td>");
document.write("<td class=button><a class=menu href='"+path+"show.html'>My Upcoming Show</a></td>");
document.write("<td width='5'>&nbsp;</td>");
document.write("<td class=button><a class=menu href='"+path+"murals.html'>Mural &amp; Trompe l'Oeil Gallery</a></td>");
document.write("<td width='5'>&nbsp;</td>");
document.write("<td class=button><a class=menu href='"+path+"paintings.html'>Paintings</a></td>");
document.write("<td width='5'>&nbsp;</td>");
document.write("<td class=button><a class=menu href='"+path+"grenadierguards.html'>Sketches</a></td>");
document.write("<td width='5'>&nbsp;</td>");
document.write("<td class=button><a class=menu href='"+path+"commissions.html'>Commissions</a></td>");
document.write("<td width='5'>&nbsp;</td>");
document.write("<td class=button><a class=menu href='"+path+"contactme.html'>Contact me</a></td>");
document.write("<td width='5'>&nbsp;</td>");
document.write("<td class=button><a class=menu href='"+path+"aboutme.html'>Biography</a></td>");
document.write("<td width='5'>&nbsp;</td>");
document.write("<td class=button><a class=menu href='"+path+"links.html'>Links</a></td>");
document.write("<td width='5'>&nbsp;</td>");
document.write("<td class=button><a class=menu href='"+path+"news.html'>News</a></td>");
document.write("<td width='5'>&nbsp;</td>");
document.write("<td class=button><a class=menu href='"+path+"sitemap.html'>Site Map</a></td>");
document.write("</tr>");
document.write("</table>");
document.write("</div>");
document.write("<div id='scrollArea'>");

// end -->