﻿var submenu=new Array()

submenu[0]='<b> <a class="menu11" href="buero_eng.html">the office</a> | <a class="menu11" href="leistungen_eng.html">service</a> | <a class="menu11" href="partner_eng.html">partners</a> | <a class="menu11"  href="mitarbeiter_eng.html">staff</a> | <a class="menu11"  href="publikationen_eng.html">publications </a></b> '

submenu[1]='<b><a class="menu11" href="objekte_eng.html">objects</a> | <a class="menu11" href="temporaer_eng.html">temporary structures</a> | <a class="menu11"  href="technik_eng.html">industrial structures</a> | <a class="menu11"  href="wohnhaeuser_eng.html">houses</a>| <a class="menu11"  href="bestand_eng.html">modifications</a> | <a class="menu11"  href="wettbewerbe_eng.html">competitions</a></b> '

submenu[2]='<b><a class="menu11" href="aktuell_projekte_eng.html">new projects</a> | <a class="menu11" href="presse_eng.html">press</a>  | <a class="menu11" href="neues_projekt_eng.html">new project report</a> </b>'

submenu[3]='<b> </b>'

submenu[4]='<b><a class="menu11" href="kontakt_eng.html">adress telefon fax</a> | <a class="menu11" href="lageplan_eng.html">site plan</a> | <a class="menu11"  href="kontakt2_eng.html">how you can find us</a></b> '

//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=500


var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}

function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide)
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)
}

function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}