$(document).ready(function() {
	/**
	 * Kleine Event-Handler für die Fahnen
	 */
	$("#LangBar li:not(.Selected) img").fadeTo("fast", 0.4);
	$("#LangBar li:not(.Selected) img").hover(
		function(){
			$(this).fadeTo("slow", 1);
		},
		function(){
			$(this).fadeTo("fast", 0.4);
		}
	)
});