$("#xxgd li").mouseover(function () {
$("#xxgd li a").css({ "color": "#000" });
$(this).css({ "background-color": "#e0e0e0" });
}).mouseout(function () {
$("#xxgd li a").css({ "color": "#000" });
$(this).css({ "background-color": "" });
});