/* The link details */ 
var links = new Array ("trustees", "DPW", "villagecode", "meetings", "hours", "historian", "tax", "elections", "phone", "vc", "email" ); 
var links_text = new Array ("Trustees", "DPW", "Village Code", "Monthly Meetings", "Village Hall Hours", "Historian", "Tax Collection", "Elections", "Phone Numbers", "Village Court", "E-Mail"); 
var links_url = new Array ("index.html#trustees", "index.html#dpw",  "http://www.ecode360.com/?custId=FU1650", "index.html#meetings", "index.html#hours", "historian.html", "index.html#tax", "index.html#elections", "index.html#phone", "index.html#vc", "mailto:tdimezza@fultonville.org"); 

/* 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><center><a href="' + links_url[i] + '" class="menu">'+ links_text[i]+ ' <b>»</b></a></center></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><center><a href="' + links_url[i] +  
'" class="menu">'+ links_text[i] + '</a></center></td></tr></table>'); 
 } 
 
 document.write('<table cellspacing="0" cellpadding="0"bgcolor="#FFFFCC"><tr><td></td></tr></table>');
  
} 
}

/* Generate the menu */ 
dyn_menu_gen(); 
 
 