function y2k(number)    { return (number < 1000) ? number + 1900 : number; }

var now = new Date();
var month = now.getMonth()+1;
var numofday = now.getDay()+1;
var date = now.getDate();
var year = y2k(now.getYear());
var gg_mm = date+"."+month;
var months = new Array(12);
    months [1] = "Gennaio"
    months [2] = "Febbraio"
    months [3] = "Marzo"
    months [4] = "Aprile"
    months [5] = "Maggio"
    months [6] = "Giugno"
    months [7] = "Luglio"
    months [8] = "Agosto"
    months [9] = "Settembre"
    months [10] = "Ottobre"
    months [11] = "Novembre"
    months [12] = "Dicembre"
var adesso = ""

if (numofday==1)
  document.write("<font color=#ff0000>Domenica<\/font>, ");
else
if (numofday==2)
  document.write("Lunedì, ");
else
if (numofday==3)
  document.write("Martedì, ");
else
if (numofday==4)
  document.write("Mercoledì, ");
else
if (numofday==5)
  document.write("Giovedì, ");
else
if (numofday==6)
  document.write("Venerdì, ");
else
if (numofday==7)
  document.write("<font color=#ff0000>Sabato<\/font>, ");
  

document.write(date+" "+months[month]+" " + year);


if (gg_mm=="1.1")
    document.write(" - <font color=#ff0000><strong>Buon Capodanno<\/strong><\/font>");
else
if (gg_mm=="6.1")
    document.write(" - <strong>Buona Epifania<\/strong>");
else
if (gg_mm=="14.2")
    document.write(" - <IMG SRC='images/anniv/svalentino.gif' ALIGN=absmiddle WIDTH=20 HEIGHT=20><strong> Buon S.Valentino<\/strong>");
else
if (gg_mm=="19.3")
    document.write(" - <strong>Festa del Papa'<\/strong>");
else
if (gg_mm=="8.4")
    document.write(" - <font color=#ff0000><strong>Buona Pasqua<\/strong><\/font><IMG SRC='images/anniv/rondine.gif' ALIGN=absmiddle WIDTH=32 HEIGHT=32><IMG SRC='images/anniv/pasqua.gif' ALIGN=absmiddle WIDTH=64 HEIGHT=64>");
else
if (gg_mm=="9.4")
    document.write(" - <font color=#ff0000><strong>Lunedí dell'Angelo<\/strong><\/font>");
else
if (gg_mm=="25.4")
    document.write(" - <strong>Anniversario della Liberazione<\/strong>");
else
if (gg_mm=="1.5")
    document.write(" - <strong>Festa del Lavoro<\/strong>");
else
if (gg_mm=="8.5")
    document.write(" - <strong> Festa della Mamma<\/strong>");
else
if (gg_mm=="11.8")
    document.write(" - <strong>S.Lorenzo<\/strong>");
else
if (gg_mm=="15.8")
    document.write(" - <IMG SRC='images/anniv/ferragosto.gif' ALIGN=absmiddle WIDTH=30 HEIGHT=30><font color=#ff0000><strong>Buon Ferragosto<\/strong><\/font>");
else
if (gg_mm=="1.11")
    document.write(" - <strong>Ognissanti<\/strong>");
else
if (gg_mm=="8.12")
    document.write(" - <strong>Immacolata Concezione<\/strong>");
else
if (gg_mm=="24.12")
    document.write(" - <font color=#ff0000><strong>Buon Natale<\/strong><\/font>");
else
if (gg_mm=="25.12")
    document.write(" - <font color=#ff0000><strong>Buon Natale<\/strong><\/font>");
else
if (gg_mm=="26.12")
    document.write(" - <strong>Buon S. Stefano<\/strong>");
else
if (gg_mm=="31.12")
    document.write(" - <font color=#ff0000><strong>Buon Fine Anno<\/strong><\/font>");