<!--
var isnMonths=new Array("Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre");
var isnDays= new Array("Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato","Domenica");
today=new Date();

function Segnala(){
	top.location.href = 'mailto:?subject='+document.title+'&body='+document.title+': '+escape(location.href);
}
// variabili globali
d=document;
cacheflag=0;
imageheight=59;
imagewidth=103;
var stm=null;
var incsi=null;
var decsi=null;

// cache immagini
if (document.images){
	var imgCommento = new Array(); 
	for (i=0;i<9;i++){
		imgCommento[i]=new Image();
		imgCommento[i].src="/images/cha_"+(i+1)+".gif";
	}
	cacheflag=1;
}
function Swap(id){
	if (cacheflag){
		if (d.images['commento'].height=imageheight){
			d.images['commento'].height=1;
			d.images['commento'].width=1;
		}
		if (stm) clearTimeout(stm);
		if (decsi) clearTimeout(decsi);
		d.images['commento'].src=imgCommento[id-1].src;
		incsi=setInterval("Incr()", 20);
	}
}
function Incr(){
	if (d.images['commento'].height<imageheight-5) d.images['commento'].height+=3;
	if (d.images['commento'].width<imagewidth-5) d.images['commento'].width+=5;
	else {
		clearInterval(incsi);
		d.images['commento'].height=imageheight;
		d.images['commento'].width=imagewidth;
	}
}
function Decr(){
	if (d.images['commento'].height>0) d.images['commento'].height-=5;
	if (d.images['commento'].width>0) d.images['commento'].width-=5;
	else clearInterval(decsi);
}
function Kill(){
	decsi=setInterval("Decr()", 25);
}
function Clear(){
	if (incsi) clearTimeout(incsi);
	if (cacheflag) stm=setTimeout('Kill()',2000);
}
//-->
