/* dropDownMenu.js */

var mainMenu = new Array();





//function menuItem(name,subMenu,colorS



function menuItem(name,subMenu,color,gotoURL,cellWidth)
{
  this.name = name;
  this.subMenu = subMenu
  this.color = color;
  this.gotoURL = gotoURL;
  this.cellWidth = cellWidth;



}

var dropBoxes = new Array("drop0","drop1","drop2","drop3","drop4","drop5");

function showDrop(i)
{
  var id = document.getElementById("drop" + i);
  id.style.visibility = "visible";
}


function hideDrop(i)
{
  var id = document.getElementById("drop" + i);
  id.style.visibility = "hidden";
}


function locateDrop()
{
  var i;
  var id = document.getElementById("horizMenuEnvelope");
  var top = id.offsetTop + 27;
  for (i=0;i<dropBoxes.length;i++){
    id = document.getElementById(dropBoxes[i]);
    id.style.top = top + "px";
  }
}
    
