
$(function(){$('.hot_group dt>a').each(function(){$(this).click(function(){var show_id=$(this).attr('name');$(this).parent().find('a').removeClass('current');$(this).addClass('current');var _this=$(this);$('.i_group').hide();$(show_id).show();if($(this).attr('c')=='0'){var myAjax=$.ajax({type:'get',url:'/group/gethotgroup',dataType:'json',success:function(res){if(res.status=='ok'){_this.attr('c','1');$(show_id).html(res.msg);}}});}});});});