// Hyphenator für Silbentrennung(/Blocksatz) konfigurieren/initiieren:
var hyphenatorSettings = {
	//hyphenchar : '|',
 	displaytogglebox : false,
	minwordlength : 6,
	intermediatestate : 'hidden',
	selectorfunction: function () {
		return $('#netmenue ul li:nth-child(2) a, #form-veranstaltungseintrag span.einzug label');
	}
};
Hyphenator.config(hyphenatorSettings);
Hyphenator.run();

$(document).ready(function(){
						   
	$('#netmenue')
	.find('li:nth-child(2) a').css({'padding-right':'10px'})
	.end()
	.find('li:nth-child(2).aktiv a').css({'padding-right':'0', 'color':'red'});
	
});
