// JavaScript Document
function show_navigation()
{
   document.write('<div id="navbackground">\n\n');
	 /***  START LOGO ***/
   document.write('<div id="banner">\n');
   document.write('<h1>Ken\'s Creative Overload</h1>\n');
   /***  END LOGO  ***/
   document.write('<div id="navigator">\n');
   document.write('    <ul id="navigator">\n');
   document.write('        <li><a href="index.html"   id="normal"  target="_self" >Home</a></li>\n');
   document.write('        <li><a href="programming/index.html"   id="normal"  target="_self" >Programming</a></li>\n');
   document.write('        <li><a href="webprojects/index.html"   id="normal"  target="_self" >Web Projects</a></li>\n');
   document.write('        <li><a href="art/index.html"   id="normal"  target="_self" >Art stuff</a></li>\n');
   document.write('        <li><a href="writing/index.html"   id="normal"  target="_self" >Writing</a></li>\n');
   document.write('        <li><a href="music/index.html"   id="normal"  target="_self" >Music</a></li>\n');
   document.write('        <li><a href="games/index.html"   id="normal"  target="_self" >Games</a></li>\n');
   document.write('    </ul>\n');
   document.write('</div>\n');
   document.write('</div>\n');
   document.write('</div>\n');
}

function show_sidebar()
{
   document.write('<image src="images/July2009.jpg"><br/>\n');
   document.write('View <A href="KenCooneyResume.pdf">my resume</a>.\n\n'); 
   document.write('<script language="JavaScript">\n');
   document.write('<!--\n');
   document.write('var mailpart1 = "kenpc";\n');
   document.write('var mailpart2 = "insightbb.com";\n');
   document.write('var anchortext = "Email";\n');
   document.write('document.write("<a href=" + "mail" + "to:" + mailpart1 +\n');
   document.write('"@" + mailpart2 + ">" + anchortext + "</a> me.<p />")\n');
   document.write('//-->\n');
   document.write('</script>\n');
}
