<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


// USE lowercase FOR ALL OPTIONS ONLY

document.write('<div id="menulocation" style="z-index: 10;">');
document.write('<table cellpadding="0" cellspacing="0" border="0" width="0"><tr><td class="printhide">');

document.write('<ul id="top-nav">');




// START MENU LINKS - EDIT BELOW THIS AREA




document.write('  <li class="menuT"><a href="index.html">home</a></li>');


document.write('  <li class="menuT"><a href="persoenlich.htm">pers&ouml;nlich</a></li>');



document.write('  <li class="menuT"><a href="behandlung.htm">behandlung</a>'); 
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="behandlung.htm">shiatsu</a></li>');
document.write('      <li><a href="magnetfeld.htm">magnetfeld</a></li>');
document.write('<img src="picts/menu_subnav_bottom.gif" HEIGHT="2" WIDTH="110"><br>');
document.write('    </ul>');
document.write('  </li>');

 

document.write('  <li class="menuT"><a href="angebot.htm">angebot</a>');



document.write('  <li class="menuT"><a href="news.htm">news</a>');



document.write('  <li class="menuT"><a href="kontakt.htm">kontakt</a>');

document.write('</tr><tr><td>');
document.write('<img src="picts/menu_bottom.gif" HEIGHT="2" WIDTH="38"><br>');
document.write('</td></tr><tr><td class="menu-line" height="19" width="130">');

document.write('</ul>');



// START MENU IMAGES


//  End -->

document.write('</table></DIV>');








// COPYRIGHT 2007 © animalshiatsu.ch
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE



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;