// 滚屏
jQuery(document).ready(function($){
$('.scroll_t').click(function(){$('html,body').animate({scrollTop: '0px'}, 800);}); 
$('.scroll_c').click(function(){$('html,body').animate({scrollTop:$('.comment_header').offset().top}, 800);});
$('.scroll_b').click(function(){$('html,body').animate({scrollTop:$('#footer').offset().top}, 800);});
});

//加载中提示
$(document).ready(function(){
$('.slider_post h3 a,.alist a,.list_box_title_box h3 a,.index_list_box_first h3 a').click(function(){
$(this).text('正在努力加载中...');
window.location = $(this).attr('href');
});
});
//Tab切换标签
$(document).ready(function(){
	$('#tab-title span').click(function(){
	$(this).addClass("selected").siblings().removeClass();
	$("#tab-content > ul").slideUp('0').eq($('#tab-title span').index(this)).slideDown('0');
});
});
//Tab切换标签
$(document).ready(function(){
	$('#tab-title-com span').click(function(){
	$(this).addClass("selected").siblings().removeClass();
	$("#tab-content-com > ul").slideUp('0').eq($('#tab-title-com span').index(this)).slideDown('0');
});
});
