/* Outputs the navigation bar */
function outputNavBar() {

	document.writeln('<ul>');
	document.writeln('<li class="beginborder"><a href="index.php" title="Home">Home</a></li>');
	document.writeln('<li><a href="border_kart_racing.php" title="Border Kart Racing">Border Kart Racing</a></li>');
	document.writeln('<li><a href="kinsham_racing.php" title="Kinsham Racing">Kinsham Racing</a></li>');
	document.writeln('<li><a href="kinsham_raceway.php" title="Media Gallery">Media Gallery</a></li>');
	document.writeln('<li><a href="contact_us.php" title="Contact Us">Contact Us</a></li>');
	document.writeln('<li class="endborder"><a href="location.html" title="Location">How to find us</a></li>');
	document.writeln('</ul>');

}

function outputFooter() {
	
	document.writeln('<hr />');
	document.writeln('&copy; 2007-8 Kinsham Raceway. All rights reserved. All trademarks are the property of their respective owners.<br />');
	document.writeln('Site by <a href="">J. Knight</a>');
	
}