<!--
// javascript source code
// (c) 2004 marcus wilhelm - programat4
// mailto:info@programat4.de
// all responsibility for use remains with the user

var catQ = new Array();
catQ[0] = window.document.title + '</b>'
catQ[1] = 'webdesign</b>'
catQ[2] = 'web : </b>erfahrung z&auml;hlt'
catQ[3] = 'web : </b>ref : architekturprogramm'
catQ[4] = 'web : </b>ref : Latz Riehl Partner Landschaftsarchitekten'
catQ[5] = 'web : </b>ref : IB Herde'
catQ[6] = 'web : </b>ref : ladleif architekten'
catQ[7] = 'web : </b>ref : Wolfram DER Spyra'
catQ[8] = 'web : </b>ref : Uni Kassel Architektur-Stadt-Landschaftsplanung'
catQ[9] = 'web : </b>ref : Landscape &#150; Architecture and Photography'
catQ[10]= 'web : </b>unsere prinzipien &#150; ihr erfolg'
catQ[11]= 'web : </b>unsere leistungen im &uuml;berblick'
catQ[51]= 'webdesign</b>'
catQ[52]= 'architektur</b>'
catQ[53]= 'etc</b>'
//catQ[x] = 'web : </b>ref# : Uni Kassel FG St&auml;dtebau und Siedlungsplanung'
//catQ[x] = 'web : </b>ref# : plan.R Modellbau+Design'
//catQ[6] = 'web : </b>ref : &ouml;koB&uuml;'

var linK = new Array();
linK[1] = 'web_start1.htm'
linK[2] = 'referenzen1.htm'
linK[3] = '_architekturprogramm1.htm'
linK[4] = '_lrp1.htm'
linK[5] = '_herde1.htm'
linK[6] = '_ladleif1.htm'
linK[7] = '_spyra1.htm'
linK[8] = '_asl1.htm'
linK[9] = '_tckraus1.htm'
linK[10]= 'leistung1.htm'
linK[11]= 'leistung2.htm'
//linK[x] = '_ssp1.htm'
//linK[x] = '_plan_r1.htm'
//linK[6] = '_oekobue1.htm'

function disPlay(catX)
{
var allQ = '<table border="0" cellspacing="0" cellpadding="0"><tr><td nowrap height="24" class="menue1"><b style="color:#FFFFFF">programat4 : ' + catQ[catX] + '</td></tr></table>';
if (document.getElementById) window.document.getElementById('loCation').innerHTML = allQ
else if (document.all) window.document.all.loCation.innerHTML = allQ
else if (document.layers) {
  window.document.layers['loCation'].document.open();
  window.document.layers['loCation'].document.write(allQ);
  window.document.layers['loCation'].document.close();
  }
if (catX == 0) {
  countEr = 1;
  while (countEr <= linK.length) {
    // alert (countEr + "  " + window.location.href);
    if (window.location.href.lastIndexOf(linK[countEr]) != -1) document.images['menue'+countEr].src = '../_img/dig_on.gif';
    countEr++;
    }
  }
}

function moveOver(typeX,nrX) 
{
if (document.images['menue'+nrX].src.lastIndexOf('out') != -1) {
  document.images['menue'+nrX].src = '../_img/' + typeX +'_over.gif';
  disPlay(nrX);
  }
}

function moveOut(typeX,nrX) 
{
if (document.images['menue'+nrX].src.lastIndexOf('over') != -1) {
  document.images['menue'+nrX].src = '../_img/' + typeX +'_out.gif';
  disPlay(0);
  }
}

function linkTo(whereTo) 
{
if (whereTo == 0) {
  countEr = 1;
  while (countEr <= linK.length) {
    if (window.location.href.lastIndexOf(linK[countEr]) != -1) whereTo = countEr + 1;
    // alert (countEr + ' --- ' + whereTo);
    countEr++;
    }
  if (whereTo > linK.length) whereTo = 1;
  }
window.location.href=linK[whereTo]
}

//-->