jQuery(function() {
	
	jQuery(".mandarinopub").each(function() {
		
		var elemento = jQuery(this).attr("numero");
		var questo = jQuery(this);
		//questo.html(elemento);
//		alert('proxy.php?request=' + escape('http://www.latina24ore.com/l24/' + elemento));
		jQuery.getJSON('/proxy.php?request=http://www.latina24ore.com/l24/' + elemento, function(json){
//			alert(json);
			questo.html(json.output);
		});
		
	});
	
	jQuery("#tag_interno").css("background-color", "white").load("http://www.latina24ore.it/ #tab", function(a) {
		// tutti i tab, come se fossero chiusi.
		jQuery("#tabContent .widget").hide();
		jQuery("#tabContent .widget h2").html("&nbsp; ");
		jQuery(jQuery("#tabMenu li").get(0)).trigger("click");
	});
	
});

jQuery(function() {

	// tutti i tab, come se fossero chiusi.
	jQuery("#tabContent .widget").hide();
	jQuery("#tabContent .widget h2").html("&nbsp; ");
	jQuery(jQuery("#tabMenu li").get(0)).trigger("click");
	
});

jQuery("#tabMenu li").live("click", function() {
	jQuery("#tabContent .widget").hide();
	jQuery("#tabMenu li").css({ backgroundColor: "#efefef", color: 'black' });
	jQuery(this).css({ backgroundColor: "white", color: '#f75100' });
	jQuery(jQuery("#tabContent .widget").get(parseInt(jQuery(this).attr("etab")))).show();
});
