/*declaring variables for the clock*/
var showMe = new Date();
var rightNow = new String();

var showMeDay = new String();
/*this will write the day name rather than returning 0 - 6 which indicates Sunday - Saturday*/
var showMeDayName; 
showMeDay = showMe.getDay();

var showMeMonth = showMe.getMonth();
var showMeFullYear = showMe.getFullYear();
var showMeMonthName;
var showMeMonthDay = showMe.getDate();


/*This will take the variable showMeDayName and convert the 0 - 6 into Sunday - Saturday wordings*/
if (showMeDay == 0){
	showMeDayName = "Sun";
}

if (showMeDay == 1){
	showMeDayName = "Mon";
}

if (showMeDay == 2){
	showMeDayName = "Tues";
}

if (showMeDay == 3){
	showMeDayName = "Wed";
}

if (showMeDay == 4){
	showMeDayName = "Thur";
}

if (showMeDay == 5){
	showMeDayName = "Fri";
}

if (showMeDay == 6){
	showMeDayName = "Sat";
}

//will take the 0 - 11 which represents the month and convert it to January - December
if (showMeMonth == 0){
	showMeMonthName = "January";
}

if (showMeMonth == 1){
	showMeMonthName = "February";
}

if (showMeMonth == 2){
	showMeMonthName = "March";
}

if (showMeMonth == 3){
	showMeMonthName = "April";
}

if (showMeMonth == 4){
	showMeMonthName = "May";
}

if (showMeMonth == 5){
	showMeMonthName = "June";
}

if (showMeMonth == 6){
	showMeMonthName = "July";
}

if (showMeMonth == 7){
	showMeMonthName = "August";
}

if (showMeMonth == 8){
	showMeMonthName = "September";
}

if (showMeMonth == 9){
	showMeMonthName = "October";
}

if (showMeMonth == 10){
	showMeMonthName = "November";
}

if (showMeMonth == 11){
	showMeMonthName = "December";
}

/*this takes the variables from the showMe Hour, Minute, and Second and place it in the variable holder rightNow*/
rightNow = showMeDayName + ', ' + showMeMonthDay + " " + showMeMonthName +  ' ' +  showMeFullYear 

/*this take the variable rightNow and write it onto the screen*/
document.write(rightNow);

