function cambiaSlogan()
{
	mydate = new Date();
	secondi = mydate.getSeconds();

	document.open();
	if ( secondi <= 15 )
		document.write("<img src='/img/fotoHome01.jpg' alt='Panorama del centro del paese' id='fotoSlogan' />");
	else if (( secondi > 15 ) && ( secondi <= 30 ))
		document.write("<img src='/img/fotoHome02.jpg' alt='Tramonto sulla barchessa' id='fotoSlogan' />");
	else if (( secondi > 30 ) && ( secondi <= 45 ))
		document.write("<img src='/img/fotoHome03.jpg' alt='La barchessa di Villa Pola' id='fotoSlogan' />");
	else if ( secondi > 45 )
		document.write("<img src='/img/fotoHome04.jpg' alt='Saluti da Barcon' id='fotoSlogan' />");
	document.close();
}
