var Menue = new Array(
 "top","Home","../main.htm",
 "top","About us","#",
 "down","Our Business","Oecam/Tasks.htm",
 "down", "Organisation","Oecam/Organisation.htm",
 "down","Statute","Oecam/Statute.htm",
 "top","Members","#",
 "down","Austria","Members/Austria.htm",
 "down","France","Members/France.htm",
 "down","Germany","Members/Germany.htm",
 "down","Great Britain","Members/GB.htm",
 "down","Italy","Members/Italy.htm",
 "down","Netherlands","Members/Netherlands.htm",
 "down","Republic of Turkiye","Members/Turkey.htm",
 "down","Spain","Members/Spain.htm",
 "down","All Members","Members/AllMembers.htm",
 "top","Copper and Alloys","#",
 "down","Introduction","Copper/Introduction.htm",
 "down","Brass","Copper/Brass.htm",
 "down","Bronze","Copper/Bronze.htm",
 "down","Gun Metal","Copper/GunMetal.htm",
 "down","Special Alloys","copper/SpecialAlloys.htm",
 "down","Masteralloys","Copper/Masteralloys.htm",
 "down","Copper","Copper/Copper.htm",
 "top","Items","#",
 "down","Recycling","Items/Recycling.htm",
 "down","Scrap Supply","Items/Scrapsupply.htm",	
 "top","Statistics","Statistics/Statistics.htm",
 "top","News","News/News.htm",
 "top","Links","Links/Links.htm",
 "top","Contact","Contact/Contact.htm",
 "top","Members Only","#",
"down","Members","CUG/mempasswort.htm",
"down","Board Members","CUG/bpasswort.htm"
);
var MenueDivs = new Array();

var TopStartLinks = 0;
var TopStartOben = 10;
var TopBreite = 85;
var DownBreite = 115;
var DownLinksrand = 5;
var TopHoehe = 40;
var DownHoehe = 20;
var MenueHintergrundfarbe = "#C80000";
var MenueText = "Arial";
var MenueTextfarbe = "#000000";
var MenueTextgewicht = "bold";
var MenueTextgroesse = "11px";
var MenueInnenabstand = "2px";
var Menuetextpos = "center"; 
var MouseoverHintergrundfarbe = "#CCCCCC";
var MouseoverTextfarbe = "#000000";
var Rechtsversatz = 0;
var Untenversatz = 0;

function Init() {
 if(document.getElementById)
  Menue_erzeugen();
 else
  if(! parent.Daten)
   window.location.href = "../Deutsch/html/indexhtml.htm";
}

function Menue_erzeugen() {
 var j = 0;
 for(var i = 0; i < Menue.length; i += 3) {
  MenueDivs[j] = document.createElement("div");
  MenueDivs[j].style.position = "absolute";
  MenueDivs[j].style.fontFamily = MenueText;
  MenueDivs[j].style.fontSize = MenueTextgroesse;
  MenueDivs[j].style.color = MenueTextfarbe;
  MenueDivs[j].style.fontWeight = MenueTextgewicht;
  MenueDivs[j].style.backgroundColor = MenueHintergrundfarbe;
  MenueDivs[j].style.padding = MenueInnenabstand;
  MenueDivs[j].style.zIndex = "2";
  if(Menue[i] == "top") {
   MenueDivs[j].innerHTML = "<a class=\"nav\" href=\""+ Menue[i+2] + "\" onMouseover=\"MouseoverTopMenue(" + j + ")\" onMouseout=\"MouseoutTopMenue(" + j + ")\">" + Menue[i+1] + "</a>";
   Untenversatz = 0;
   if(i > 0) Rechtsversatz += TopBreite;
   MenueDivs[j].style.top = TopStartOben + "px";
   MenueDivs[j].style.left = TopStartLinks + Rechtsversatz + "px";
   MenueDivs[j].style.width = TopBreite + "px";
   MenueDivs[j].style.height = TopHoehe + "px";
   MenueDivs[j].style.textAlign = "center";
   MenueDivs[j].style.border = "2px solid #FFFFFF";
   Untenversatz += TopHoehe;
  }
  else if(Menue[i] == "down") {
   MenueDivs[j].innerHTML = "<a class=\"nav\" href=\""+ Menue[i+2] + "\" onMouseover=\"MouseoverDownMenue(" + j + ")\" onMouseout=\"MouseoutDownMenue(" + j + ")\">" + Menue[i+1] + "</a>";
   MenueDivs[j].style.top = TopStartOben + Untenversatz + "px";
   MenueDivs[j].style.left = TopStartLinks + Rechtsversatz + "px";
   MenueDivs[j].style.width = DownBreite + "px";
   MenueDivs[j].style.height = DownHoehe + "px";
   MenueDivs[j].style.paddingLeft = DownLinksrand + "px";
   MenueDivs[j].style.visibility = "hidden";
   Untenversatz += DownHoehe;
  }
  document.getElementsByTagName("body")[0].appendChild(MenueDivs[j]);
  j += 1;
 }
}

function MouseoverTopMenue(n) {
  MenueDivs[n].style.backgroundColor = MouseoverHintergrundfarbe;
  Menue_zuruecksetzen();
  for(var i = 0; i < Menue.length; i += 3)
   if(Menue[i] == "down")
    if(parseInt(MenueDivs[parseInt(i/3)].style.left) == parseInt(MenueDivs[n].style.left))
     MenueDivs[parseInt(i/3)].style.visibility = "visible";
}

function MouseoutTopMenue(n) {
  MenueDivs[n].style.backgroundColor = MenueHintergrundfarbe;
}

function MouseoverDownMenue(n) {
  MenueDivs[n].style.backgroundColor = MouseoverHintergrundfarbe;
}

function MouseoutDownMenue(n) {
  MenueDivs[n].style.backgroundColor = MenueHintergrundfarbe;
   
}

function Menue_zuruecksetzen() {
  for(var i = 0; i < Menue.length; i += 3)
   if(Menue[i] == "down")
    MenueDivs[parseInt(i/3)].style.visibility = "hidden";
}

