[removed]
$(function(){
$("ul.C02_c_set li .div02 a").hover(function(){
$(this).attr('style','z-index:2');
$(this).find('.pop').fadeIn(500).show();
},function(){
$(this).attr('style','z-index:0');
$(this).find('.pop').fadeOut(500).hide();
});
});$(function(){
$(".C02_c_set li em").toggle(function(){
$(this).attr('class','open');
$(this).attr('title','关闭');
$(this).parent().find('div.pzk').slideDown();
},function(){
$(this).attr('class','close');
$(this).attr('title','展开');
$(this).parent().find('div.pzk').slideUp();
});
});
[removed]