/* The link details */ 
var links = new Array ("index", 
                       "clubinfo", 
                       "calendar", 
                       "meetings", 
                       "nets",
					   "severewx", 
                       "technet",
                       "exams",
                       "irlp", 
                       "repeaterinfo", 
                       "fieldday", 
                       "resources", 
                       "swapnshop", 
                       "membership", 
                       "links"); 
var links_text = new Array ("Home", 
                            "Club Info", 
                            "Calendar", 
                            "Meetings", 
                            "Nets",
							"Severe Wx", 
                            "TechNet",
                            "Exams", 
                            "IRLP",
                            "Repeaters", 
                            "Field Day", 
                            "Resources", 
                            "Anchors", 
                            "Join", 
                            "Links"); 

var links_url = new Array ("index.php",
                           "clubinfo.php",
                           "calendar.php",
                           "meetings.php",
                           "nets.php",
						   "severewx.php",
                           "technet.php",
                           "exams.php",
                           "irlp.php",
                           "repeaterinfo.php",
                           "fieldday.php",
                           "resources.php",
                           "swapnshop.php",
                           "membership.php",
                           "links.php");
                            
var targetdest = new String();

/* 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() 
{
document.write('<table><tr>')
for(var i=0; i<links.length; i++) 
{ 
 if(loc==links[i]) 
 { 
  document.write('<td class="explorer_active" align="center" 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] + '\'"><a href="' + links_url[i] + '" class="menunew">' + links_text[i] + ' <b>»</b></a></td>'); 
 } 
 else 
 { 
  document.write('<td class="explorer" align="center" 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] + '\'"><a href="' + links_url[i] + '" class="menunew">' + links_text[i] + '</a></td>'); 
 } 
  
} 
document.write('</tr></table>');
} 

/* Generate the menu */ 
dyn_menu_gen(); 
