var menuItems = ["Home", "Calendar", "Photos", "Forms", "FAQs", "Structure", "Bear\'s Wear", "Parent\'s Page", "Wrestler\'s Page", "- Keeping Up - <br> Bear\'s Alumni", "Contact Us","Bears On Facebook" ]; <!-- This array contains the names of menu items on the left of the page, everything above the **links** menu -->
var pages = ["index.html", "calendar.html", "photos_1.php", "forms.php", "faq.html", "structure.html", "bears_wear.html", "parents.php", "wrestlers.php", "keeping_up.html", "contact.html","http://www.facebook.com/pages/Lemont-Bears-Wrestling-Club/143758851900?ref=nf"]; <!-- This array contains the names of html pages that are referred to by the above menu items. Both of these arrays need to run in parallel -->
var linksMenu = ["IKWF", "Illinois Matmen", "USA Wrestling", "Illinois Wrestling", "Big Bash Wrestling","ILWrestling"]; <!-- This array contains the names of menu items on the left of the page everything below the **links** menu -->
var links = ["http://www.ikwf.org/", "http://www.illinoismatmen.com/", "http://www.themat.com/", "http://www.illinoiswrestling.com/", "http://www.bigbashwrestling.com/","http://www.ilwrestling.com/"]; <!-- This array contains the names of html pages that are referred to by the above menu items. Both of these arrays need to run in parallel -->

document.write('<td class="menu" valign="top">');
document.write('	<table class="menu" width="100%">');

for(mI = 0; mI < menuItems.length; mI++)
{
document.write('		<tr>');
document.write('			<td align="center" class="menu">');
document.write('				<p class="menu"><a class="menu" href="'+ pages[mI] +'">'+menuItems[mI]+'</a></p>');
document.write('			</td>');
document.write('		</tr>');
document.write('		<tr>');
document.write('			<td align="center">');
document.write('				&nbsp;');
document.write('			</td>');
document.write('		</tr>');
}
document.write('		<tr>');
document.write('			<td align="center" class="menu_links">');
document.write('				<p class="menu_links">**Links**</p>');
document.write('			</td>');
document.write('		</tr>');
document.write('		<tr>');
document.write('			<td align="center">');
document.write('				&nbsp;');
document.write('			</td>');
document.write('		</tr>');
for(l = 0; l < links.length; l++)
{
document.write('		<tr>');
document.write('			<td align="center" class="menu">');
document.write('				<p class="menu"><a class="menu" href="'+ links[l] +'">'+linksMenu[l]+'</a></p>');
document.write('			</td>');
document.write('		</tr>');
document.write('		<tr>');
document.write('			<td align="center">');
document.write('				&nbsp;');
document.write('			</td>');
document.write('		</tr>');
}
document.write('	</table>');
document.write('</td>');