//	Code Title:	One CCS Menu
//	Created by:	Jesse Lann
//	Created on:	October 3, 2007
//	Last Updated:	October 3, 2007
//	Description:	To provide a standard menu to be used on all One website pages.


	document.write('<!-- LIST for Navigation -->');
	document.write('<link rel="stylesheet" type="text/css" href="listnav.css" />');
	document.write('<div id="navigation">');
	document.write('	<ul>');
	document.write('		<li><a href="index.html">Home</a></li>');
	document.write('		<li><a href="statement_of_understanding.html">Statement of Understanding</a></li>');
	document.write('		<li><a href="upcoming_events.html">Events</a></li>');
	document.write('		<li><a href="photos.htm">Photos</a></li>');
	document.write('		<li><a href="leadership.html">Leadership</a></li>');
	document.write('		<li><a href="positions.html">Positions</a></li>');
	document.write('		<li><a href="sponsors.html">Sponsors</a></li>');
	document.write('		<li><a href="contact.html">Contact Us</a></li>');
	document.write('		<li><a href="onewear.html">One Wear</a></li>');
	document.write('	</ul>');
	document.write('</div>');

//	End JavaScript Code
