

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="IMG") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
function getHeight() {
	var layout07Height= document.getElementById('layout07').offsetHeight;  
	var layout17Height= document.getElementById('layout17').offsetHeight;  
	var allesHeight= document.getElementById('alles').offsetHeight; 
	
		document.getElementById('layout08').style.height = layout07Height+"px";
		document.getElementById('layout15').style.height = layout07Height-layout17Height+"px";	
		document.getElementById('strich').style.height = allesHeight+"px";	
		document.getElementById('strich02').style.height = allesHeight+"px";

}
jQuery.noConflict();
jQuery(document).ready(function($) {
$(document).ready(function(){
//JQuery ready is quicker than onload
$(".contenttable tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".contenttable tr:even").addClass("alt");
});
}); 
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
function showField() {
    var el;
    el = document.getElementById('fieldDisplay');
    if (el) {
        el.style.display='';
    }
}

