//########## Hauptmenu 
//Mootools-1.11_menu.js muss ebenfalls implementiert sein
//##########

	window.onload = function() {
		$$('li.ts').each(function(lnk, index){
	
				lnk.addEvent('mouseover', function(){
					$ES('span.Menu0Mx',lnk).setProperty('class', 'Menu0Mx_over');
					$ES('span.Menu0Sx',lnk).setProperty('class', 'Menu0Sx_over');
					$ES('span.Menu0Dx',lnk).setProperty('class', 'Menu0Dx_over');
			}.bind(this)); /*	and here's the explicit .bind(this) for .addEvent's function	*/
			
				lnk.addEvent('mouseout', function(){
					$ES('span.Menu0Mx_over',lnk).setProperty('class', 'Menu0Mx');
					$ES('span.Menu0Sx_over',lnk).setProperty('class', 'Menu0Sx');
					$ES('span.Menu0Dx_over',lnk).setProperty('class', 'Menu0Dx');
			}.bind(this)); /*	and here's the explicit .bind(this) for .addEvent's function	*/
		}, this); /* and this is the last .each, so it has a "this" too	*/
	};
//########## ENDE Hauptmenu und Submenu
