function TopMenu()
{
menuitems = new Array( "&Uuml;bersicht",
                                             "Hobbies",
                                           "zum SC",
                                           "Beruf",
                                           "Links",
                                           "Kontakt",
                                           "Impressum");
menulinkitems = new Array( "index-1.html",
                                                     "hobbies.html",
                                                     "./sc/index.php",
                                                   "beruf.html",
                                                   "links.html",
                                                   "kontakt.html",
                                                   "impressum.html");

document.write('<div class="dekolinks"></div>');
document.write('<div class="dekooben"></div>');
document.write('<div class="dekoecke"></div>');

document.write('<table class="menu"><tr>');
for( i in menuitems )
{
document.write('<td class="menu1">');
document.write('<a href="' + menulinkitems[i] + '">' + menuitems[i] +'</a>');
document.write('</td>');
}
document.write('</tr></table>');
}

 TopMenu();
