var now = new Date();
var day = now.getDay();
var month = now.getMonth()+1;
var date = now.getDate();
var year = now.getFullYear();
var hours = now.getHours();

if (now.getDay() == 0) {
day = "sunday";
}
if (now.getDay() == 1) {
day = "monday";
}
if (now.getDay() == 2) {
day = "tuesday";
}
if (now.getDay() == 3) {
day = "wednesday";
}
if (now.getDay() == 4) {
day = "thursday";
}
if (now.getDay() == 5) {
day = "friday";
}
if (now.getDay() == 6) {
day = "saturday";
}
if (now.getMonth() == 0) {
month = "january";
}
if (now.getMonth() == 1) {
month = "february";
}
if (now.getMonth() == 2) {
month = "march";
}
if (now.getMonth() == 3) {
month = "april";
}
if (now.getMonth() == 4) {
month = "may";
}
if (now.getMonth() == 5) {
month = "june";
}
if (now.getMonth() == 6) {
month = "july";
}
if (now.getMonth() == 7) {
month = "august";
}
if (now.getMonth() == 8) {
month = "september";
}
if (now.getMonth() == 9) {
month = "october";
}
if (now.getMonth() == 10) {
month = "november";
}
if (now.getMonth() == 11) {
month = "december";
}
var timeValue = "" + day + " " + date + " " + month + ", "  + year;






