$(document).ready(function(){ 
	/* Navigation */
	function auf(){ $(this).children('ul').show(); }
	function zu(){ $(this).children('ul').hide(); }
	$('#nav li:has(>ul)').hoverIntent({
	   sensitivity: 1, 
	   interval: 30, 
	   over: auf, 
	   timeout: 400, 
	   out: zu 
	});
	$('table td:odd, table th:odd').addClass('wechsel');
});