function init() {
    if (arguments.callee.done) return;
    arguments.callee.done = true;
		if (document.all) {			
			if (document.getElementById('menu')) {
				var list = document.getElementById('menu').getElementsByTagName('li');
				for (var i=0; i<list.length; i++) {
					list[i].onmouseover=function() { this.className+=" over"; }
					list[i].onmouseout=function() { this.className=this.className.replace(" over", ""); }		
				} 
			};
		};	
};

if (document.addEventListener) {
   document.addEventListener("DOMContentLoaded", init, false);
   }
   /*@cc_on @*/
   /*@if (@_win32)
       document.write("<script defer src=fileadmin/javascript/ie_onload.js><"+"/script>");
      /*@end @*/
  window.onload = init;
       
		
