/*加强用户体验,给切换的时候添加过渡效果 20100301*/
$(".detail li").hover(
function () {
$(this).css("background-color","#e6e7e8");
},
function () {
$(this).css("background-color","#d2dfec");
}
);
$(".detail li").hover(
function () {
$(this).css("background-color","#e6e7e8");
},
function () {
$(this).css("background-color","#d2dfec");
}
);