<!-- start menu.js -->

// fuer optionen kleine buchstaben benutzen
var showimage1		= "no"		//  1. bild im menu-bereich
var showimage2		= "no"		//  2. bild im menu-bereich
var linkstop 		= "no" 		//  menu ganz am oberen rand yes/no


document.write('<DIV id="menulocation" style="z-index: 10;">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="154"><tr><td class="menutrans">');
   if (linkstop == "no") {
document.write('<img src="images/menu-top.gif" width="152" height="160"><br>');
}
document.write('<ul id="top-nav">');

// links im menue


document.write('  <li class="menuT"><a href="index.html">Home</a></li>');
document.write('  <li class="menuT"><a href="gallerie_petra.htm">Petra</a></li>');
document.write('  <li class="menuT"><a href="gallerie_patrick.htm">Pat</a></li>');
document.write('  <li class="menuT"><a href="gallerie_aileen.htm">Aileen</a></li>');
document.write('  <li class="menuT"><a href="gallerie_adrian.htm">Adrian</a></li>');
document.write('  <li class="menuT"><a href="gallerie_anthony.htm">Anthony</a></li>');
document.write('  <li class="menuT"><a href="kontakt.htm">Kontakt</a></li>');
document.write('  <li class="menuT"><a href="genealogy/index.php">Genealogy</a></li>');


// ende links  //


document.write('</ul>');
document.write('</td></tr><tr><td align="center">');


// wenn bilder im menue 


   if (showimage1 == "yes") {
document.write('<br><br><a href="index.html"><img src="images/menu-picture-1.jpg" border="0" class="borders"></a><br><br><br>');
}
   if (showimage2 == "yes") {
document.write('<a href="index.html"><img src="images/menu-picture-2.jpg" border="0" class="borders"></a><br><br>');
}
document.write('</td></tr></table></DIV>');

//  ende -->


function IEHoverPseudo() {

	var navItems = document.getElementById("top-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}

}
window.onload = IEHoverPseudo;
