//--------------------------------------------------------------------------------
// Datei          : menu.js
// Beschreibung   : Menu JavaScript
// Copyright      : (c) 2005 by atBits
// Verantwortlich : David Schiffer
// Erstellt am    : 11.04.2005
//--------------------------------------------------------------------------------

var content=new Array()
//change the array below to the text associated with your links Expand or contract the array, depending on how many links you have
content[0]='Soziet&auml;t';
content[1]='Dienstleistungen';
content[2]='International';
content[3]='Rechtsanw&auml;lte und Steuerberater';
content[4]='Karriere';
content[5]='Kontakt';
content[6]='Anfahrt';
content[7]='Links';
content[8]='';
content[9]='';
content[10]='HOME';

function regenerate(){
    window.location.reload()
}
function regenerate2(){
    if (document.layers){
        appear()
        setTimeout("window.onresize=regenerate",450)
    }
}

function changetext(whichcontent){

    if (document.all||document.getElementById){
        cross_el=document.getElementById? document.getElementById("descriptions"):document.all.descriptions
        cross_el.innerHTML='<font class="menulink">'+whichcontent+'<font>'
    }
    else if (document.layers){
        document.d1.document.d2.document.write('<font class="menulink">'+whichcontent+'</font>')
        document.d1.document.d2.document.close()
    }

}

function appear(){
    document.d1.visibility='show'
}

window.onload=regenerate2

