$(function() {
	$('#main-photo').cycle({
		fx: 'fade'
	});
});

function getData(item){
	$('.tab').removeClass('tab_over');
	$('#'+item).addClass('tab_over');
	
	var total_elem = $('#red-tab > a').size();
	$('#red-tab > a').each(function(index, domEle){
		
		if($(domEle).hasClass('tab_over')){
			$(domEle).css("z-index", total_elem + 1);
		}else{
			$(domEle).css("z-index", total_elem - index);
		}
		
	});
	$("#red-tab").focus();

	
	var html_loading = "<div class='loading-content'><img src='images/loading45.gif' /></div>";
	
	$('#tab-data').html(html_loading);
	
	$.post("data_loading/news.php", {item:item},
	   function(data){
		$('#tab-data').html(data);
	});
	
	
	
}