// 过期关键词单击事件
$("#li_overdue_keyword").click(function() {
$(".listmenu3a").attr("class", "listmenu3");
$(this).attr("class", "listmenu3a");
var overdue_count = 0;
$(".ddtxt2").each(function() {
var keyWordId = $(this).attr("id").substr($(this).attr("id")
.indexOf("_")
+ 1);
if ("过期" == $.trim($(this).text())) {
// && "未激活" != $.trim($(this).text())
overdue_count++;
$("#div_keyword_" + keyWordId).fadeIn();
} else {
$("#div_keyword_" + keyWordId).fadeOut("fast");
}
});
$("#a_overdue_count").text(overdue_count);
});