var current = new Date();
var dateOfMonth=current.getDate();
themonth=current.getMonth();
theyear="2009";
themon="";

switch (themonth){
case 0: themon="January";
break;
case 1: themon="February";
break;
case 2: themon="March";
break;
case 3: themon="April";
break;
case 4: themon="May";
break;
case 5: themon="June";
break;
case 6: themon="July";
break;
case 7: themon="August";
break;
case 8: themon="September";
break;
case 9: themon="October";
break;
case 10: themon="November";
break;
case 11: themon="December";
break;
}
date="Today is "+themon+" "+dateOfMonth+", "+theyear;