// date
var DaysofWeek = new Array();
DaysofWeek[0]="sun";
DaysofWeek[1]="mon";
DaysofWeek[2]="tue";
DaysofWeek[3]="wed";
DaysofWeek[4]="thu";
DaysofWeek[5]="fri";
DaysofWeek[6]="sat";
var Months = new Array();
Months[0]="jan";
Months[1]="feb";
Months[2]="mar";
Months[3]="apr";
Months[4]="may";
Months[5]="jun";
Months[6]="jul";
Months[7]="aug";
Months[8]="sep";
Months[9]="oct";
Months[10]="nov";
Months[11]="dec";
var RightNow = new Date();
var day = DaysofWeek[RightNow.getDay()];
var date = RightNow.getDate();
var Month = Months[RightNow.getMonth()];
var Year = RightNow.getFullYear();
document.write(day + " - " + Month + " " + date);