
function vetrina_home_new()
{
	$.ajax({
		type: "POST",
		url: SITE_URL + "ajax/jajax.php",
		data: "m=vetrina_home",
		success: function(result) {
			if(result.match(/^Error:/i)) {
				$("#vetrina-home").hide();
				$("#errore-vetrina-home").html( result.replace("Error:","") ).show();
				return;
			}
			$("#errore-vetrina-home").hide();
			$("#vetrina-home").html("").html( Base64.decode( result ) ).show();
		}
	});
}

function init()
{
	vetrina_home_new();
	window.setTimeout('vetrina_home_new();', 10000)
}

$(document).ready( init );