// WebEv Menu V 1.1
// (c) 2002, 2003, 2004 use as freely as you like but there is no support
// http://qidg.com
// jt@qidg.com
// for GSV, Inc.

/* link details */
var links = new Array (
 "index",
 "management",
 "news"
);

var links_text = new Array (
 "<img border=\"0\" src=\"../images/bullets/divMen.gif\" width=\"10\" height=\"7\">Corporate Overview",
 "<img border=\"0\" src=\"../images/bullets/divMen.gif\" width=\"10\" height=\"7\">Management Team",
 "<img border=\"0\" src=\"../images/bullets/divMen.gif\" width=\"10\" height=\"7\">Company News"
);

var links_url = new Array (
 "../about/index.html",
 "../about/management.htm",
 "../about/news.htm"
);

/* 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 webev_menu_gen()
{
 for(var i=0; i<links.length; i++)
// {
//  if(((this.location=="http://www.gsv.com") || (this.location=="http://www.gsv.com/") || (this.location=="http://gsv.com") || (this.location=="http://gsv.com/")) && (i==0))
//{
//   document.write('<table class="men_explorer_active" onmouseover="this.className=&#39;men_explorer_active&#39;;return true" onmouseout="this.className=&#39;men_explorer_active&#39;;return true" onmousedown="this.className=&#39;men_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] + '</a></td></tr></table>');
//}
//else
 {
  if(loc==links[i])  
  {
   document.write('<table class="men_explorer_active" onmouseover="this.className=&#39;men_explorer_active&#39;;return true" onmouseout="this.className=&#39;men_explorer_active&#39;;return true" onmousedown="this.className=&#39;men_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] + '</a></td></tr></table>');
  }
  else
  {   
   document.write('<table class="men_explorer" onmouseover="this.className=&#39;men_explorer_over&#39;;return true" onmouseout="this.className=&#39;men_explorer&#39;;return true" onmousedown="this.className=&#39;men_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>');
 }
//}

/* Generate the menu */
webev_menu_gen();