$(document).ready(function(){
	$('#rotate > ul').tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 7000);
});
$(document).ready(function(){

	i = 1; 
	$(".hot_news_txt .hn"+i).fadeIn("slow");
	timerID = setInterval("htFade()",5000);
});
function htFade(){

	$(".hot_news_txt .hn"+i).fadeOut("slow",function(){

		i++;
		if(i > 6){
			i = 1;
		}

		$(".hot_news_txt .hn"+i).fadeIn("slow");
	});
}
