function faseLuna(DG){DR=new Date(2000,0,1);TL=(((DG-DR)/1000)+2114500)%2551443;RV=1
if(TL<2508243)RV=8
if(TL<1956782.25)RV=7
if(TL<1870382.25)RV=6
if(TL<1318921.5)RV=5
if(TL<1232521.5)RV=4
if(TL<681060.75)RV=3
if(TL<594660.75)RV=2
if(TL<43200)RV=1
return RV}
function impostaFase(){var data=new Date()
var fase=faseLuna(data);var frase;var img;switch(fase){case 1:frase='Nuova';img='luna1.png';break;case 2:frase='Crescente';img='luna3.png';break;case 3:frase='in Primo Quarto';img='luna3.png';break;case 4:frase='Crescente';img='luna3.png';break;case 5:frase='Piena';img='luna5.png';break;case 6:frase='Calante';img='luna6.png';break;case 7:frase='in Ultimo Quarto';img='luna6.png';break;case 8:frase='Calante';img='luna6.png';break;}
var data_str="Oggi è il "+data.getDate()+'/'+(data.getMonth()+1)+'/'+data.getFullYear();$('#data').text(data_str);$('#fase_luna').text("La luna è "+frase);$('#immagine_luna').attr('src','/images/'+img);}