<!-- Begin MENU LINKS AND OPTIONS
// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY


var showimage         = "no"                         // SHOW THE SMALL IMAGE ON THE MENU

var linkstop         = "no"                         // START LINKS AT THE VERY TOP
var date         = "yes"                 // SHOW DATE



document.write('<DIV id="menulocation" class="printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="150"><tr><td>');
   if (linkstop == "no") {
document.write('<img src="picts/spacer.gif" width="10" height="18"><br>');
}
document.write('<img src="picts/menu-top.gif" width="130"><br>');

// START LINKS - EDIT BELOW TO CHANGE MENU ITEMS //



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="index.html" class="menu">Home</a>');



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="news.html" class="menu">News</a>');



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="verein.html" class="menu">Verein</a>');



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="chronik.html" class="menu">Chronik</a>');



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="rueck.html" class="menu">Rückblicke</a>');



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="termine.html" class="menu">Termine</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="verkauf.html" class="menu">K.-bestellung</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="karneval.html" class="menu">Karneval?</a>');



// COPY AND PASTE THE NEXT TWO LINES TOO ADD A NEW LINK


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="satz.html" class="menu">Satzung</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="gast.html" class="menu">Gästebuch</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="kontakt.html" class="menu">Kontakt</a>');



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="links.html" class="menu">Links</a>');



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="impress.html" class="menu">Impressum</a>');



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="disclaim.html" class="menu">Disclaimer</a>');



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="awards.html" class="menu">Awards</a>');



// COPY AND PASTE THE NEXT TWO LINES TOO ADD A NEW LINK


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="spons.html" class="menu">Sponsoren</a>');



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="http://510703.dynamicboard.de/" class="menu">*Forum*</a>');




// START BOTTOM IMAGE AREA



document.write('</td></tr><tr><td>');

   if (showimage == "yes") {
document.write('<center><br><br>');
document.write('<a href="'+imaglink+'"><img src="picts/sidebar.jpg" border="0"></a><br>');
document.write('</center>');
}
document.write('</td></tr></table></DIV>');




// START DATE CODE


// COPYRIGHT 2006 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

   if (date == "yes") {
document.write('<div id="date-location">');
var d=new Date()
var weekday=new Array("Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag")
var monthname=new Array("Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember")
document.write("<span class=\"date\"><nobr>" + weekday[d.getDay()] + " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")

document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}


//  End -->