// Effetto di fade sull'immagine in Home Page
// -----------------------------------------------
var o = 0;

function switcha_home (tempo)
{
	if ( o == 0 )
	{
		$("div#fading_home_2").fadeIn();
		o = 1;
	}
	else
	{
		$("div#fading_home_2").fadeOut();
		o = 0;
	}
}


// READY
// ===============================================
$(document).ready ( function ()
{
	$("div#fading_home_2").show();
	$("div#fading_home_2").fadeOut();
	
	setInterval("switcha_home(2000);", 5000);
	
});
