var delay=0;
var timerID;
var currentMenu='';

var imagesAry = new Array();
imagesAry[0] = new Image(); imagesAry[0].src = "pics/homepage/menu_about.gif";
imagesAry[1] = new Image(); imagesAry[1].src = "pics/homepage/menu_about2.gif";
imagesAry[2] = new Image(); imagesAry[2].src = "pics/homepage/menu_partners.gif";
imagesAry[3] = new Image(); imagesAry[3].src = "pics/homepage/menu_partners2.gif";
imagesAry[4] = new Image(); imagesAry[4].src = "pics/homepage/menu_news.gif";
imagesAry[5] = new Image(); imagesAry[5].src = "pics/homepage/menu_news2.gif";
imagesAry[6] = new Image(); imagesAry[6].src = "pics/homepage/menu_contacts.gif";
imagesAry[7] = new Image(); imagesAry[7].src = "pics/homepage/menu_contacts2.gif";

function allowDropdown()
{
  if (document.all)
    return true;
  else
    return false;
}

function highlightMenu(menuId)
{
  imgId = menuId+"_img";
  var imgName = document.images[imgId].src;

  last = imgName.lastIndexOf("2.gif");
  if (last>=0)
    return;
    
  imgName = document.images[imgId].src.substr(0,document.images[imgId].src.length-4);
  document.images[imgId].src = imgName+"2.gif";
}

function darkenMenu(menuId)
{
  imgId = menuId+"_img";
  var imgName = document.images[imgId].src;

  last = imgName.lastIndexOf("2.gif");
  if (last<0)
    return;
  
  var imgName = document.images[imgId].src.substr(0,document.images[imgId].src.length-5);
  document.images[imgId].src = imgName+".gif";
}
  
function showMenu(menuId)
{
  highlightMenu(menuId);
  clearTimeout(timerID);
  hideMenu(currentMenu);
  currentMenu = menuId;
  document.all[menuId].style.display='block';
}

function enterMenu(menuId)
{
  highlightMenu(menuId);
  clearTimeout(timerID);
}

function exitMenu(menuId)
{
  darkenMenu(menuId);
  timerID = setTimeout ('hideMenu("'+menuId+'")', delay);
}

function hideMenu(menuId)
{
  if (currentMenu!='')
  {
    currentMenu = '';
    document.all[menuId].style.display='none';
  }
}

document.writeln(
"<table border=0 cellspacing=0 cellpadding=0 width=100% background='pics/homepage/bg_hp_top.gif'>"+
"<tr valign=top>"+
"<td><img src='pics/homepage/space.gif' width=3></td>"+
"<td width=100%><img src='pics/homepage/logo_hp.gif' height=78></td>"+
"<td width=1><img src='pics/homepage/menu_border.gif'></td>"+

"<td width=83>"+
"  <div"+
"    onmouseover='highlightMenu(\"menu_about\")'"+
"    onmouseout='darkenMenu(\"menu_about\")'"+
"  ><a href='main/about.html'><img id=menu_about_img border=0 src='pics/homepage/menu_about.gif'></a></div>"+
"</td>"+
"<td width=1><img src='pics/homepage/menu_border.gif'></td>"+

"<td width=83>"+
"  <div"+
"    onmouseover='highlightMenu(\"menu_partners\")'"+
"    onmouseout='darkenMenu(\"menu_partners\")'"+
"  ><a href='main/partners.html'><img id=menu_partners_img border=0 src='pics/homepage/menu_partners.gif'></a></div>"+
"</td>"+
"<td width=1><img src='pics/homepage/menu_border.gif'></td>"+

"<td width=83>"+
"  <div"+
"    onmouseover='highlightMenu(\"menu_news\")'"+
"    onmouseout='darkenMenu(\"menu_news\")'"+
"  ><a href='main/news.html'><img id=menu_news_img border=0 src='pics/homepage/menu_news.gif'></a></div>"+
"</td>"+

"<td width=1><img src='pics/homepage/menu_border.gif'></td>"+

"<td width=83>"+
"  <div"+
"    onmouseover='highlightMenu(\"menu_contacts\")'"+
"    onmouseout='darkenMenu(\"menu_contacts\")'"+
"  ><a href='main/contacts.html'><img id=menu_contacts_img border=0 src='pics/homepage/menu_contacts.gif'></a></div>"+
"</td>"+
"<td width=1><img src='pics/homepage/menu_border.gif'></td>"+

"</table>"+

"<table border=0 cellspacing=15 cellpadding=0 width=100%>"+
"<tr><td>"
);