$(function(){
	 $('#nav ul li').hover(function(){
		$(this).addClass('li_hover');
        },function(){
		$(this).removeClass('li_hover');
		});
});