var menu = new Array();

////////// hier Menüpunkte bearbeiten ////////////////////////////////////////////////////////////////////////

menu.push("Startseite", "index.html");
menu.push("Square-Dance", "squaredance.html");
menu.push("Termine", "gucknei.html");
menu.push("Special", "special.html");
menu.push("&Uuml;bernachten", "hotel.html");
menu.push("Tanzplatz", "mittelrainhalle_plan.html");
menu.push("Fotogalerie", "fotogalerie.html");
menu.push("Jahresaktivitäten", "jahresaktiv.html");
menu.push("Kontakt", "kontakt.html");
menu.push("G&auml;stebuch", "http://gaestebuch.gbserver.de/huebnerkurt,1.html");
menu.push("Links", "links.html");

////////// ab hier nichts verändern //////////////////////////////////////////////////////////////////////////

var actual=0;
for (actual=0; actual<menu.length; actual+=2)
  if (document.URL.indexOf(menu[actual+1])>-1) break;

document.writeln("  <center>");
document.writeln("  <table width=\"100%\">");
document.writeln("    <tr>");
document.writeln("      <td width=\"67%\" align=\"center\" valign=\"top\">");
document.writeln("        <br />");
document.writeln("        <img src=\"img/titel12.gif\" width=\"500\" height=\"120\" alt=\"The Lumberjacks Heidenheim\" border=\"0\" />");
document.writeln("        <br /><br />");
document.writeln("        <img src=\"img/squares11.gif\" width=\"70\" height=\"70\" alt=\"Square Dance\" border=\"0\" align=\"middle\" />");
for (var i=0; i<menu.length; i+=2)
{
  document.write("        <img src=\"img/blank.gif\" width=\"30\" height=\"50\" alt=\"\" border=\"0\" align=\"top\" /><a href=\"");
  document.write(menu[i+1]);
  document.write("\"><b>");
  if (i==actual)
    document.write("<font color=\"#53b847\">");
  document.write(menu[i]);
  if (i==actual)
    document.write("</font>");
  document.writeln("</b></a>");
}
document.writeln("        <br />");
document.writeln("      </td>");
document.writeln("      <td width=\"33%\" align=\"center\" valign=\"top\">");
document.writeln("        <img src=\"img/lumbers.gif\" width=\"197\" height=\"246\" alt=\"Logo Lumberjacks\" border=\"1\">");
document.writeln("      </td>");
document.writeln("    </tr>");
document.writeln("  </table>");
document.writeln("  <hr noshade=\"noshade\" size=\"2\" color=\"#b20614\" width=\"85%\">");
document.writeln("  <br />");
