// JavaScript Document



function doClock(){
  var now = new Date();
  var days = new Array('Sun','Mon','Tue','Wed','Thu','Fri','Sat');
  var months = new Array('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
  var today = "";
  today =  days[now.getDay()] + ", " + months[now.getMonth()] + " " + ((now.getDate()<10) ? "0" : "") + now.getDate() + ", " + now.getFullYear();
  return today;      
}
