
up = new doArray(5);
down = new doArray(5);
message = new doArray(5);

function doArray(n) {
        this.length = n;
     for (var i = 0; i<=n; i++)
         {
          this[i] = new Image();
      }
     return this;
        }

up[0].src="images/head/start.gif";
down[0].src="images/head/start_hot.gif";
message[0]="start";

up[1].src="images/head/kontakt.gif";
down[1].src="images/head/kontakt_hot.gif";
message[1]="contact";

up[2].src="images/head/info.gif";
down[2].src="images/head/info_hot.gif";
message[2]="unsere leistungen";

up[3].src="images/head/projekte.gif";
down[3].src="images/head/projekte_hot.gif";
message[3]="die projekte";


function goup(i) {
        if ( i != current ) document.images[i+1].src=up[i].src;
        window.status=""
}

function godown(i) {
        document.images[i+1].src=down[i].src;
        window.status=message[i]
}



document.write('<table border="0" cellpadding="0" width="750" cellspacing="0">');
document.write('  <tr>');
document.write('    <td width="144"><img border="0" src="images/head/top.gif" WIDTH="144" HEIGHT="40"><br>');
document.write('      <a href="start.htm" onmouseover="godown(0)" onmouseout="goup(0)">');
document.write('      <img border="0" src="images/head/start.gif" WIDTH="72" HEIGHT="24"></a><a href="kontakt.htm" onmouseover="godown(1)" onmouseout="goup(1)"><img border="0" src="images/head/kontakt.gif" WIDTH="72" HEIGHT="24"></a><br>');
document.write('      <a href="info.htm" onmouseover="godown(2)" onmouseout="goup(2)">');
document.write('      <img border="0" src="images/head/info.gif" WIDTH="72" HEIGHT="27"></a><a href="projekte.htm" onmouseover="godown(3)" onmouseout="goup(3)"><img border="0" src="images/head/projekte.gif" WIDTH="72" HEIGHT="27"></a></td>');
document.write('    <td width="61"><img border="0" src="images/head/right.gif" WIDTH="61" HEIGHT="91"></td>');
document.write('    <td width="545" background="images/head/headback.gif" valign="top" align="right"><img border="0" src="images/head/slipek.gif"></td>');
document.write('  </tr>');
document.write('</table>');

if ( current != -1 ) godown(current);