<!-- 
// Countdown script distributed by http://www.hypergurl.com/countdown.html
var today=new Date() 

//Enter the date for your countdown. Month first then day. Example 6th month 26th day. 
var countdown=new Date(2009, 11, 18) 

//Enter your message here! Change words below to suit 
var beforedayText = "" 
var ondaytext = "" 

var monthtext=new Array("Jan","Feb","Mar","April","May","June","July","Aug","Sep","Oct","Nov","Dec") 
countdown.setMonth(countdown.getMonth()-1) //change to 0-11 month format 

//var showdate = "("+monthtext[countdown.getMonth()]+" "+countdown.getDate()+")" 
var showdate = monthtext[countdown.getMonth()] + " " + countdown.getDate()
var one_day = 1000*60*60*24 
var calculatediff = "" 
calculatediff = Math.ceil((countdown.getTime() - today.getTime()) / (one_day)) 
if (calculatediff < 0) { 
	var nextyeartoday = new Date() 
	nextyeartoday.setFullYear(today.getFullYear()+1) 
	calculatediff = Math.ceil((nextyeartoday.getTime()-today.getTime())/(one_day)+calculatediff) 
	} 
var pluraldayornot = (calculatediff == 1) ? "giorno" : "giorni" 
//if (calculatediff>0) document.write("<b>" + calculatediff + " " + pluraldayornot + " " + beforedayText + " " + showdate + "!</b>") 
//	else if (calculatediff==0) document.write("<b>" + ondaytext + " " + showdate + "!</b>")
if (calculatediff>0) document.write("<b>- " + calculatediff + " " + pluraldayornot + "</b>") 
	else if (calculatediff==0) document.write("<b>" + " " + showdate + ", " + today.getFullYear() + "</b>")  
-->
