// DATA NELLA TESTATA

data = new Date();
ora =data.getHours();
minuti=data.getMinutes();
secondi=data.getSeconds();
giorno = data.getDay();
mese = data.getMonth();
date= data.getDate();
year= data.getYear();
if(minuti< 10)minuti="0"+minuti;
if(secondi< 10)secondi="0"+secondi;
if(year<1900)year=year+1900;
if(ora<10)ora="0"+ora;
if(giorno == 0) giorno = " Domenica ";
if(giorno == 1) giorno = " Luned&iacute; ";
if(giorno == 2) giorno = " Marted&iacute; ";
if(giorno == 3) giorno = " Mercoled&iacute;";
if(giorno == 4) giorno = " Gioved&iacute; ";
if(giorno == 5) giorno = " Venerd&iacute; ";
if(giorno == 6) giorno = " Sabato ";
if(mese == 0) mese = "Gennaio ";
if(mese ==1) mese = "Febbraio ";
if(mese ==2) mese = "Marzo ";
if(mese ==3) mese = "Aprile ";
if(mese ==4) mese = "Maggio ";
if(mese ==5) mese = "Giugno ";
if(mese ==6) mese = "Luglio ";
if(mese ==7) mese = "Agosto ";
if(mese ==8) mese = "Settembre ";
if(mese ==9) mese = "Ottobre ";
if(mese ==10) mese = "Novembre ";
if(mese ==11) mese = "Dicembre";

function oggi() {
    document.write(""+giorno+" "+date+" "+mese+" "+year+" - "+ora+":"+minuti+"");
}

// CAMBIO DELLE FOTO IN HOMEPAGE
function cambiaFoto()
{
    mydate = new Date();
    secondi = mydate.getSeconds();

    document.open();
    if ( secondi <= 15 )
        document.write("<img src=\"/img/foto/homepage01.jpg\" alt=\"Cavallo\" width=\"613\" height=\"116\" />");
    else if (( secondi > 15 ) && ( secondi <= 30 ))
        document.write("<img src=\"/img/foto/homepage02.jpg\" alt=\"Palazzo\" width=\"613\" height=\"116\" />");
    else if (( secondi > 30 ) && ( secondi <= 45 ))
        document.write("<img src=\"/img/foto/homepage03.jpg\" alt=\"Palazzo e cielo\" width=\"613\" height=\"116\" />");
    else if ( secondi > 45 )
        document.write("<img src=\"/img/foto/homepage04.jpg\" alt=\"Fontana di notte\" width=\"613\" height=\"116\" />");
    document.close();
}


