document.writeln('<style type="text/css">');
document.writeln('#kmc_menu { position:absolute;top:132px;left:400px;padding:5px;background:url("images/menu_bg.png");font:normal 9pt verdana;color:#ffffff;text-align:left;line-height:16px;border-top:1px solid #ebd8b2;border-left:1px solid #ebd8b2;border-right:1px solid #6a4700;border-bottom:1px solid #6a4700;visibility:hidden;filter:Alpha(opacity=95); }');
document.writeln('#kmc_menu a { display:block;width:108px;color:#ffffff;text-decoration:none; }');
document.writeln('#kmc_menu a:hover { background-color:#ffffff;color:#333366; }');
document.writeln('#kmc_menu2 { position:absolute;top:132px;left:400px;padding:5px;background:url("images/menu_bg.png");font:normal 9pt verdana;color:#ffffff;text-align:left;line-height:16px;border-top:1px solid #ebd8b2;border-left:1px solid #ebd8b2;border-right:1px solid #6a4700;border-bottom:1px solid #6a4700;visibility:hidden;filter:Alpha(opacity=95); }');
document.writeln('#kmc_menu2 a { display:block;width:100px;color:#ffffff;text-decoration:none; }');
document.writeln('#kmc_menu2 a:hover { background-color:#ffffff;color:#333366; }');
document.writeln('#ghc_menu { position:absolute;top:132px;left:200px;padding:5px;background:url("images/menu_bg.png");color:#ffffff;text-align:left;line-height:16px;border-top:1px solid #ebd8b2;border-left:1px solid #ebd8b2;border-right:1px solid #6a4700;border-bottom:1px solid #6a4700;visibility:hidden; }');
document.writeln('#ghc_menu a { display:block;color:#ffffff;text-decoration:none; }');
document.writeln('#ghc_menu a:hover { background-color:#ffffff;color:#333366; }');
document.writeln('</style>');
document.writeln('<div id="kmc_menu" onmouseover="pause()" onmouseout="startTimeout(\'kmc_menu\')">');
document.writeln('<a href="kmc.html">» Philosophie</a>');
//document.writeln('<a href="aktuelles.html">» Aktuelles</a>');
document.writeln('<a href="ausschreibung.html">» Ausschreibung</a>');
//document.writeln('<a href="anmeldung_mit_online.php">» Anmeldung</a>');
document.writeln('<a href="anfahrt.html">» Anfahrtskizze</a>');
document.writeln('<a href="plaene2010.html">» Streckenpläne</a>');
document.writeln('<a href="profile_2010.html">» Streckenprofile</a>');
document.writeln('<a href="ergebnisse12kmc.html"><b>» Ergebnisse</b></a>');
document.writeln('<a href="bg_2011_.html"><b>» Bildergalerie</a>');
document.writeln('<a href="sponsoren.html">» Sponsoren</a>');
document.writeln('</div>');
//document.writeln('<div id="kmc_menu2" onmouseover="pause()" onmouseout="startTimeout(\'kmc_menu2\')">');
//document.writeln('<a href="veranstaltungen2011.html">» 2011</a>');
//document.writeln('</div>');
//document.writeln('<div id="ghc_menu" onmouseover="pause()" onmouseout="startTimeout(\'ghc_menu\')">');
//document.writeln('<a href="#">» 2009</a>');
//document.writeln('<a href="veranstaltungen.html">» 2009</a>');
//document.writeln('<a href="#">» Bildergalerie</a>');
document.writeln('</div>');

var timer = null;
var aktives_objekt = null;
function zeigeMenu(name, breite) {
	if (timer) window.clearTimeout(timer);
	if (document.getElementById) {
		if (aktives_objekt) document.getElementById(aktives_objekt).style.visibility = "hidden";
		if (window.innerWidth) fensterbreite = window.innerWidth;
		if (document.body.offsetWidth) fensterbreite = document.body.offsetWidth;
		if (!window.innerWidth && !document.body.offsetWidth) fensterbreite = screen.width;
		if (fensterbreite < 900) document.getElementById(name).style.left = breite;
		if (fensterbreite >= 900) document.getElementById(name).style.left = Math.round(fensterbreite/2) - 455 + breite;
		document.getElementById(name).style.visibility = "visible";
		
	}
}
function startTimeout(name) {
	if (timer) window.clearTimeout(timer);
	timer = window.setTimeout("versteckeMenu('"+name+"')",600);
	aktives_objekt = name;
}
function pause() {
	window.clearTimeout(timer);
}
function versteckeMenu(name) {
	aktives_objekt = null;
	if (document.getElementById) {
		document.getElementById(name).style.visibility = "hidden";
	}
}

