

//header table - includes logo
document.writeln ( '<table class = "mainTable" border= 0> ' );
document.writeln ( '	<tr> ' );
document.writeln ( '		<td> ');
document.writeln ( '			<table width = "100%"  align = "center" cellpadding = "0" cellspacing = "0" border = "0">  ');
document.writeln ( '				<tr>  ');
document.writeln ( '					<td><img style="border:none;" src="./images/top_header.jpg" usemap="#mustmap">');
document.writeln ( '					</td> ');		 							
document.writeln ( '				</tr>  ');
document.writeln ( '			</table>  ');
document.writeln ( '		</td> ');	 		 
document.writeln ( '	</tr> ' );		
document.writeln ( '</table> ' );

document.writeln ( '<map name="mustmap">' );
document.writeln ( '  <area shape="rect" coords="0,0,250,155" href="http://www.mustministries.org" target="_blank" alt="Must Ministries" title="Must Ministries"/>' );
document.writeln ( '</map>' );
//navigation table
/*

* CSS Horizontal List Menu- by JavaScript Kit (www.javascriptkit.com)
* Menu interface credits: http://www.dynamicdrive.com/style/csslibrary/item/glossy-vertical-menu/
* This notice must stay intact for usage
* Visit JavaScript Kit at http://www.javascriptkit.com/ for this script and 100s more

*/

document.writeln ('<table class = "mainTable" border=0' );
document.writeln ('	<tr> ' );
document.writeln ('		<td align = "center"> ');
document.writeln ( '<div class="horizontalcssmenu" style="padding-left:2px;">  ');
document.writeln ( '<ul id="cssmenu1"> ');
document.writeln ( '<li style="border-left: 0px solid #202020;"><a href="./">Home</a></li> ');
document.writeln ( '<li><a href="register.html" >Registration</a></li> ');
document.writeln ( '<li><a href="raceinfo.html">Race Info</a> ');
document.writeln ( '    <ul> ');
document.writeln ( '    <li><a href="raceresults.html">Race Results </a></li> ');
document.writeln ( '    <li><a href="racepictures.html">Race Pictures </a></li> ');
document.writeln ( '    <li><a href="directions.html">Directions</a></li> ');
document.writeln ( '    <li><a href="racetimes.html">Race Times</a></li> ');
document.writeln ( '    <li><a href="packetpickup.html">Packet Pickup</a></li> ');
document.writeln ( '    <li><a href="faqs.html">FAQs</a></li> ');
document.writeln ( '    <li><a href="courseinfo.html">Course Info</a></li> ');

document.writeln ( '    <li><a href="media.html">Digital Media</a></li> ');
document.writeln ( '    </ul> ');
document.writeln ( '</li> ');
document.writeln ( '<li><a href="history.html">History</a></li> ');
document.writeln ( '<li><a href="getinvolved.html">Get Involved</a> ');
document.writeln ( '    <ul> ');
document.writeln ( '    <li><a href="volunteer.html">Volunteer</a></li> ');
document.writeln ( '    <li><a href="sponsorship.html">Sponsor</a></li> ');
document.writeln ( '    </ul> ');
document.writeln ( '</li> ');
document.writeln ( '<li><a href="sponsors.html">Our Sponsors</a></li> ');
document.writeln ( '</ul> ');
document.writeln ( '<br style="clear: left;" /> ');
document.writeln ( '</div> ');

document.writeln ('		</td> ');	 		 
document.writeln ('	</tr> ' );		
document.writeln ('</table> ' );  
