// JavaScript Document

var monthName = new Array("JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC");
var today = new Date();

function getMonth() {
	return monthName[today.getMonth()];
}

function getDay() {
	return today.getDate();
}