$(document).ready(function(){

$(".li3").each(function(){
		$(this).mouseover(function(){
				$(this).css("background-color","#eee");
		});
		$(this).mouseout(function(){
				$(this).css("background-color","#fff");
		});
	});
});
