<!--
function menu(obj){
	if (!obj.length) return;
	$(obj).find("#tab_bar ul").css({display: "none"});
	$(obj).hover(function(){
		$(this).find('#tab_bar ul').first().stop(true, true).slideDown(300);
	},function(){
		$(this).find('#tab_bar ul').first().stop(true, true).slideUp(300);
	});
}

$(document).ready(function(){
	menu($("#tab_bar ul li"));
});


navHover = function() {
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);


function printPage()
{
if (window.print) {
jetztdrucken = confirm('Seite drucken ?');
if (jetztdrucken) window.print();
}
}


//-->
