function css() {

	/* go on for IE in generall */
	if($.browser.msie){
	
		$('#nav li').hover(
			function(){ $(this).addClass('hover');  },
			function(){ $(this).removeClass('hover'); }
		);
		
		
	}

}

$(document).ready(css);
