function refresh_match() {
	$.getJSON('includes/partita.php', function(json) {
		if($("#match001").length > 0) {
			if(json[0].visibile == 't') {
				$("#matchdata").html(json[0].dataformattata + ' - ' + json[0].giornata);
				$("#team1").html(json[0].squadra1);
				$("#team2").html(json[0].squadra2);
				$("#gol1").html(json[0].gol_squadra1);
				
				if(json[0].articolo != '') {
					$("#matchtime").html(json[0].minutoaggiornamento + '<a href="' + json[0].articolo + '" target="_blank"><br>Leggi l\'articolo...</a>');
				} else {
					$("#matchtime").html(json[0].minutoaggiornamento);
				}
				$("#gol2").html(json[0].gol_squadra2);
				$("#match001").show("slow");
			} else {
				$("#match001").hide("slow");
			}
		}
	});
}
$(document).ready(function(){ 
	if($("#match001").length > 0) {
		refresh_match();
		
	}
});
