$(document).ready(function(){ 
	$(document).pngFix();
	$('#content ol li').wrapInner('<span></span>');
	$('a').focus(function() {
  	this.blur();
	});
	$('#navigation li').hover(
		function() { $('ul', this).show(); },
		function() { $('ul', this).hide(); }
	);
	
	$('.Uebersicht tbody tr:nth-child(odd)').addClass("odd");
	$(".Uebersicht tbody tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
}); 

