function showMenu(){
document.write('<table width="100%" border="0" cellpadding="0" cellspacing="0" id="menu_items">');

showMenuHeader("OUR NETWORKS");
showMenuGroups();
showBottomMenuItem();

showMenuHeader("ABOUT THE CLUB");
showMenuItem("Club News", "index.html");
showMenuItem("General Information", "General_Information.html");
showBottomMenuItem();

showMenuHeader("OUR VENUES");
showMenuItem("Hall Park (Outdoor)", "Hall_Park.html");
showMenuItem("Greasley Hall (Indoor)", "Greasley_Hall.html");
showBottomMenuItem();

showMenuHeader("EVENT CALENDAR");
showMenuItem("Club Calendar", "Club_Calendar.html");
showBottomMenuItem();

showMenuHeader("EVENT PAGES");
showMenuItem("Championship Weekend", "Club_Championship.html");
showMenuItem("Summer Series", "Summer_Series.html");
showMenuItem("Winter Club Series", "Saturday_Night.html");
showMenuItem("Winter Sunday Series", "Winter_Offroad_Series.html");
showMenuItem("Championship Links", "Entry_Info.html");
showBottomMenuItem();

document.write('</TABLE>');

showHitCounter();

}




function showMenuHeader(name)
{
document.write('<tr>');
document.write('<td><img src="images/menu_top_left.gif" /></td>');
document.write('<td background="images/menu_top_mid.gif" width="100" class="up_level_menu_items">' + name + '</td>');
document.write('<td><img src="images/menu_top_right.gif" /></td>');
document.write('</tr>');
}

function showRedMenuFooter(name)
{
document.write('<tr>');
document.write('<td><img src="images/menu_red_bottom_left.gif" /></td>');
document.write('<td background="images/menu_red_bottom_mid.gif" width="100" class="up_level_menu_items">' + name + '</td>');
document.write('<td><img src="images/menu_red_bottom_right.gif" /></td>');
document.write('</tr>');
}

function spawnMenuItem(name, page, target)
{
document.write('<tr>');
document.write('<td colspan="3" class="low_level_menu_items" onclick=window.open("' + page + '","' + target+ '") onmouseover="className=\'low_level_menu_items_mouseover\';" onmouseout="className=\'low_level_menu_items\';"><A TARGET="' + target + '" HREF="' + page + '"> - ' + name + '</A></td>');
document.write('</tr>');
}

function showMenuItem(name, page)
{
document.write('<tr>');
document.write('<td colspan="3" class="low_level_menu_items" onclick=location=\''+ page +'\' onmouseover="className=\'low_level_menu_items_mouseover\';" onmouseout="className=\'low_level_menu_items\';"><A HREF="' + page + '"> - ' + name + '</A></td>');
document.write('</tr>');
}

function showMenuGroups()
{
document.write('<tr>');
document.write('<td colspan="3" align="center" class="low_level_menu_items"><DIV ALIGN=CENTER>');
document.write('<BR>');
document.write('<A HREF="http://www.facebook.com/pages/Nottingham/Broxtowe-Model-Car-Club/134241746591472" target="social"><img src="images/fb_logo.gif" border=0></A>');
document.write('<BR><BR>');
document.write('<A HREF="http://twitter.com/broxtowemcc" target="social"><img src="images/twitter_logo.png" border=0></A>');
document.write('</DIV></TD>');
document.write('</tr>');
}

function showMenuLogo()
{
document.write('<tr>');
document.write('<td colspan="3" align="center" class="low_level_menu_items"><DIV ALIGN=CENTER>');
document.write('<img src="images/logo.gif">');
document.write('</DIV></TD>');
document.write('</tr>');
}

function showBottomMenuItem(name)
{
document.write('<tr>');
document.write('<td colspan="3"><img src="images/menu_bottom.gif"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td height="1" colspan="3"></td>');
document.write('</tr>');
}




function showContentHeader()
{
document.write('<tr>');
document.write('<td vAlign="Top" align="left" height="25"><img src="images/main_top_left.gif" /></td>');
document.write('<td vAlign="Top" width="100%" height="25" style="background:url(images/menu_top_mid.gif) repeat-x; height:25px;"></td>');
document.write('<td vAlign="Top" align="right" height="25"><img src="images/menu_top_right.gif" /></td>');
document.write('</tr>');
}

function showContentFooter()
{
document.write('<tr>');
document.write('<td><img src="images/main_bottom_left.gif"></td>');
document.write('<td background="images/main_bottom_mid.gif"></td>');
document.write('<td><img src="images/main_bottom_right.gif"></td>');
document.write('</tr>');
}

function showPageFooter()
{
document.write('<table width="100%" height="50" border="0" cellpadding="0" cellspacing="0">');
document.write('<tr>');
document.write('<td align="center" background="images/bottom_side_bg.jpg"><img src="images/bottom.jpg" /></td>');
document.write('</tr>');
document.write('</table>');
}