/*
 *	aquilante.js
 *
 *	Script per modificare l'immagine della testata in modo casuale
 *	all'apertura di ogni pagina.
 *
 *	#(@) 20111022 (marco[at]aquilante.net)
 */

function changeBackground() {
	var a, n;
	n = 18;
	today = new Date();
	//a = Math.floor(Math.random()*n);
	a = (today.getHours() + today.getDate()) % n;
	//a = today.getDate() % n;
	//a=17;
	document.getElementById("testata").style.backgroundImage = "url(img/bgr/sfondo"+a+".jpg)";
}


