/* The link details */
var links = new Array ("index", "News", "Calendar", "Offer", "FlamesofWar", "LegendsofTheOldWest", "LegendsofTheHighSeas", "WingsofWar", "Meetings", "the%20club", "SouthCon2009Results");
var links_text = new Array ("Welcome to OMTS", "Club News", "Event Calendar", "What We Offer", "* Flames of War", "* Legends of The Old West", "* Legends of The High Seas", "* Wings of War", "Meetings", "The Club", "<h2>SouthCon 2009 Results</h2>");
var links_url = new Array ("index.html", "News.html", "Calendar.html", "Offer.html", "FlamesofWar.html", "LegendsofTheOldWest.html", "LegendsofTheHighSeas.html", "WingsofWar.html", "Meetings.html", "the%20club.html", "SouthCon2009Results.html");

/* backup of links with SouthCon 2009
var links = new Array ("index", "News", "Calendar", "Offer", "FlamesofWar", "LegendsofTheOldWest", "LegendsofTheHighSeas", "WingsofWar", "Meetings", "the%20club", "SouthCon2009", "SouthCon200940K", "SouthCon2009FoW", "SouthCon2009WFB", "SouthCon2009rest");
var links_text = new Array ("Welcome to OMTS", "Club News", "Event Calendar", "What We Offer", "* Flames of War", "* Legends of The Old West", "* Legends of The High Seas", "* Wings of War", "Meetings", "The Club", "<h2>SouthCon 2009</h2>", "* 40K Teams Campaign Event", "* Flames of War Tourney", "* Fantasy Tourney", "* Other Gaming");
var links_url = new Array ("index.html", "News.html", "Calendar.html", "Offer.html", "FlamesofWar.html", "LegendsofTheOldWest.html", "LegendsofTheHighSeas.html", "WingsofWar.html", "Meetings.html", "the%20club.html", "SouthCon2009.html",  "SouthCon200940K.html", "SouthCon2009FoW.html", "SouthCon2009WFB.html", "SouthCon2009rest.html");
*/

/* Resolve the location */
var loc=String(this.location);
loc=loc.split("/");
loc=loc[loc.length-1].split(".");
loc=loc[loc.length-2];

/* Menu generating function */
function dyn_menu_gen()
{
for(var i=0; i<links.length; i++)
{
 if(loc==links[i])
 {
  document.write('<table class="explorer_active" onmouseover="this.className=\'explorer_active\';return true" onmouseout="this.className=\'explorer_active\';return true" onmousedown="this.className=\'explorer_active\';return true" onclick="location.href=\'' + links_url[i] + '\'"><tr><td><a href="' + links_url[i] + '" class="menu">' + links_text[i] + ' <b> -> </b></a></td></tr></table>');
 }
 else
 {
  document.write('<table class="explorer" onmouseover="this.className=\'explorer_over\';return true" onmouseout="this.className=\'explorer\';return true" onmousedown="this.className=\'explorer_down\';return true" onclick="location.href=\''  + links_url[i] + '\'"><tr><td><a href="' + links_url[i] +  '" class="menu">'  + links_text[i] + '</a></td></tr></table>');
 }
 document.write('<table cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"><tr><td></td></tr></table>');
}
}

/* Generate the menu */
dyn_menu_gen(); 