var links = new Array (
  "index.htm",
  "aboutus",
  "programs",
  "supporters",
  "news",
  "resources"
 );

var links_text = new Array (
  "Home Page",
  "About Us",
  "School Program",
  "Supporters",
  "News & Events",
  "Resources"
 );

var links_url = new Array (
  "index.htm",
  "aboutus/history.htm",
  "programs/map.htm",
  "supporters/supporters.htm",
  "news/news.htm",
  "resources/dvd.htm"
 );

var loc=String(this.location);
loc=loc.split("/");
loc=loc[loc.length-1].split(",");
//document.write(loc);

var loc2=String(this.location);
loc2=loc2.split("/");
loc2=loc2[loc2.length-2].split(",");
//document.write(loc2);

function qiksearch_menu_gen()
{
 document.write('<table width="850" border="0" cellspacing="0" cellpadding="0"><tr>');
 for(var i=0; i<links.length; i++)
 {

 if(loc==links[i])
  {
   document.write('<td valign="middle" class="explorer2_active" onmouseover="this.className=&#39;explorer2_active&#39;;return true" onmouseout="this.className=&#39;explorer2_active&#39;;return true" onmousedown="this.className=&#39;explorer2_active&#39;;return true" onclick="location.href=&#39;'
   + links_url[i] + '&#39;"><a href="' + links_url[i] + '" class="menu2active">'
   + links_text[i] + '</a></td>');
   document.write('<input type="hidden" id="lt" name ="lt" value="' + links_text[i] + '">');
  }
  else
    {
     document.write('<td valign="middle" class="explorer2" onmouseover="this.className=&#39;explorer2_over&#39;;return true" onmouseout="this.className=&#39;explorer2&#39;;return true" onmousedown="this.className=&#39;explorer2_down&#39;;return true" onclick="location.href=&#39;'
     + links_url[i] + '&#39;"><a href="' + links_url[i] + '" class="menu2">'
     + links_text[i] + '</a></td>');
  }
 }
 document.write('</tr></table>');
}

qiksearch_menu_gen();




