
function getSec_page(a_this){
	
	    var name = a_this.attr('id').substring(4);
		//alert(name);
		$('.tabs_content').html('<div style="width:500px;height:249px;margin:auto;"><img src="resource/images_layout/ajax-loading.gif" border="0" style="display:block;margin:auto;padding-top:92px;" /></div>');
		
		$('#mangotabs_section #tabs li').removeClass('tab_active');
		$(a_this).parents('li').addClass('tab_active');
		$.get('http://www.mangotv.tv/home/resource/include/ajax/get_section_tab.ajax.php',{section_name_eng:name},function(data) {
				$('.tabs_content').css('display','none');													  
				$('.tabs_content').html(data);	
				$('.tabs_content').fadeIn(400);	
			} ); 
}

function changeSec(){
	getSec_page($(this));
}

function initChangeSec(){
	getSec_page($('#tab-mango-news'));
}

$(function(){
	$('#mangotabs_section #tabs li a').click(changeSec);
	initChangeSec();
});
