// Array with words
content = new Array()
content[0] = new menuItem('<font class="ico">Home</font>')
content[1] = new menuItem('<font class="ico">Help</font>')
content[2] = new menuItem('<font class="ico">Contact</font>')
content[3] = new menuItem('<font class="ico">Zoek</font>')
content[4] = new menuItem('<font class="ico">Vorige pagina</font>')
content[5] = new menuItem('<font class="ico">Volgende pagina</font>')
content[6] = new menuItem('<font class="ico">English</font>') 
content[7] = new menuItem('<font class="ico">Sitemap</font>')   
content[8] = new menuItem('<font class="ico">nederlands</font>') 
            
// adding properties to array items
function menuItem(content) {
  this.content = content;
}

// fill text area (div/layer) with content and change image
function changetext(whichcontent) {
  if (document.all || document.getElementById) { // IE4 etc.
    cross_el = document.getElementById ? document.getElementById("descriptions") : document.all.descriptions;
    cross_el.innerHTML = eval(whichcontent + ".content");
  }
  if (document.layers) { // NS4
    document.d1.document.d2.document.write(eval(whichcontent + ".content"));
    document.d1.document.d2.document.close();
  }
}

// clear text area (div/layer) and restore image
function clearText(whichcontent) {
  if (document.all || document.getElementById) {// IE4 etc.
    cross_el = document.getElementById ? document.getElementById("descriptions") : document.all.descriptions;
    cross_el.innerHTML = ' ';
  }
  if (document.layers) {// NS4
    document.d1.document.d2.document.write(' ');
    document.d1.document.d2.document.close();
  }
}