function drawDate () {
	date = document . getElementById ( 'date' ) ;
	date . innerHTML = cDate ;
}

var date = new Date () ;
var cDate = new Object ;
cDate . month = date . getMonth () ;
switch ( cDate . month ) {
	 case 0 : cDate . month = 'January' ; break ;
	 case 1 : cDate . month = 'February' ; break ;
	 case 2 : cDate . month = 'March' ; break ;
	 case 3 : cDate . month = 'April' ; break ;
	 case 4 : cDate . month = 'May' ; break ;
	 case 5 : cDate . month = 'June' ; break ;
	 case 6 : cDate . month = 'July' ; break ;
	 case 7 : cDate . month = 'August' ; break ;
	 case 8 : cDate . month = 'Sertember' ; break ;
	 case 9 : cDate . month = 'October' ; break ;
	 case 10 : cDate . month = 'November' ; break ;
	 case 11 : cDate . month = 'Decemder' ; break ;
	 default : cDate . month = 'Unknown Month' ; break ;
}
cDate . date = date . getDate () ;
cDate . year = date . getFullYear () ;

cDate = cDate . month + '. ' + cDate . date + '.' + cDate . year ;