function drawDate () {
	document . write ( date ) ;
}

var date = new Date () ;
var year = date . getFullYear () ;
var month = date . getMonth () ;
switch ( month ) {
	case 0 : month = 'January' ; break ;
	case 1 : month = 'February' ; break ;
	case 2 : month = 'March' ; break ;
	case 3 : month = 'April' ; break ;
	case 4 : month = 'May' ; break ;
	case 5 : month = 'June' ; break ;
	case 6 : month = 'July' ; break ;
	case 7 : month = 'August' ; break ;
	case 8 : month = 'Sepember' ; break ;
	case 9 : month = 'October' ; break ;
	case 10 : month = 'November' ; break ;
	case 11 : month = 'December' ; break ;
}
var day = date . getDate () ;
switch ( day ) {
	case 1 : day += '' ;
	case 2 : day += '' ;
	case 3 : day += '' ;
	default : day += '' ;
}

date = month + ' ' + day + ', ' + year ;