/**
 * @author Walter Wimberly
 * @version 1
 */

/**
 * English names for the months
 * @type	Array
 */
var monthNames = [
	"January", "February", "March", "April",
	"May", "June", "July", "August", "September",
	"October", "Novemeber", "December"
]
	
/**
 * English names for the days of the week
 * @type	Array
 */
var dayNames = [
	"Sunday", "Monday", "Tuesday", "Wednesday",
	"Thursday", "Friday", "Saturday"
]