var links = new Array (
  "index",
  "classes",
  "about",
  "exhibit",
  "events",  
  "members",
  "rentals",
  "contact"
 );

var links_text = new Array (
  "Home",
  "Classes",
  "About Us",
  "Exhibits",
  "Special Events",
  "Memberships",
  "Rentals",
  "Directions"
 );

var links_url = new Array (
  "index.htm",
  "classes.htm",
  "about.htm",
  "exhibit.htm",
  "events.htm",
  "members.htm",
  "rentals.htm",
  "contact.htm"
 );

var loc=String(this.location);
loc=loc.split("/");
loc=loc[loc.length-1].split(".");
loc=loc[loc.length-2];

function qiksearch_menu_gen()
{
 for(var i=0; i<links.length; i++)
 {
  if(((this.location=="http://www.conneautartscenter.org") || (this.location=="http://www.conneautartscenter.org/") || (this.location=="http://conneautartscenter.org") || (this.location=="http://conneautartscenter.org/")) && (i==0))
{
   document.write('<table class="explorer_active" onmouseover="this.className=&#39;explorer_active&#39;;return true" onmouseout="this.className=&#39;explorer_active&#39;;return true" onmousedown="this.className=&#39;explorer_active&#39;;return true" onclick="location.href=&#39;' + links_url[i] + '&#39;"><tr><td><a href="' + links_url[i] + '" class="menu">' + links_text[i] + ' <b>&raquo;</b></a></td></tr></table>');
}
else
{
  if(loc==links[i])
  {
   document.write('<table class="explorer_active" onmouseover="this.className=&#39;explorer_active&#39;;return true" onmouseout="this.className=&#39;explorer_active&#39;;return true" onmousedown="this.className=&#39;explorer_active&#39;;return true" onclick="location.href=&#39;' + links_url[i] + '&#39;"><tr><td><a href="' + links_url[i] + '" class="menu">' + links_text[i] + ' <b>&raquo;</b></a></td></tr></table>');
  }
  else
  {
   document.write('<table class="explorer" onmouseover="this.className=&#39;explorer_over&#39;;return true" onmouseout="this.className=&#39;explorer&#39;;return true" onmousedown="this.className=&#39;explorer_down&#39;;return true" onclick="location.href=&#39;' + links_url[i] + '&#39;"><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>');
 }
 
 document.write('<table class="explorer" onmouseover="this.className=&#39;explorer_over&#39;;return true" onmouseout="this.className=&#39;explorer&#39;;return true" onmousedown="this.className=&#39;explorer_down&#39;;return true"><tr><td><a href="' + 'mailto: info@conneautartscenter.org' + '" class="menu">' + 'Contact Us' + '</a></td></tr></table>');
} 

qiksearch_menu_gen();

// Temp Script
/*
var check_ns4=(document.layers)?true:false;

if(!check_ns4)
{
 document.writeln('<scr' + 'ipt language="JavaScript" src="scripts/JSdragTemp.js">' + '<' + '/' + 'scr' + 'ipt>');
}
*/