window.addEvent('domready', function() {

	
	// COLUMNEN ERSTELLEN
	var TripleColumns = new MooColumns({ selector:'.column', morePrecise:true,numOfColumns:2,
									   	 tolerance:100, colBreaksTrump:false}); 
	
	// SLIDE ÜBER WINDOW ERSTELLEN
	scroller = new Fx.Scroll(window); 
	
	// HAUPTMENÜPUNKTE ANIMIEREN
	$$('.sub_menu_1 a').each(function(subs) {
									   
		var childs = subs.getChildren();
		var childs2 = childs[0].getChildren();
		var parent = subs.getParent();
		var work = parent.hasClass('current_page_parent') ? true : false;
		if(!work) {
		
		subs.addEvent('mouseenter', function() { 
										childs[0].morph({'background-color' : '#bbd783', 'height' : '25'});
										childs2[0].tween('height', '25');
										childs2[1].tween('height', '25');
										});
		
		subs.addEvent('mouseleave', function() { 
										childs[0].morph({'background-color' : '#000000', 'height' : '20'});
										childs2[0].tween('height', '20');
										childs2[1].tween('height', '20');
										});
		
		}
	
	
				});
	
	
	
	
});

