

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 alles02Height= document.getElementById('alles02').offsetHeight;  

		document.getElementById('spalteLinks02').style.height = alles02Height+"px";
		document.getElementById('spalteRechts02').style.height = alles02Height+"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");
});
}); 