

    // -- made by A1javascripts.com, please keep these credits when using this script
    days = new Array(7)
    days[1] = "Sun";
    days[2] = "Mon";
    days[3] = "Tue"; 
    days[4] = "Wed";
    days[5] = "Thu";
    days[6] = "Fri";
    days[7] = "Sat";
    months = new Array(12)
    months[1] = "Jan";
    months[2] = "Feb";
    months[3] = "Mar";
    months[4] = "Apr";
    months[5] = "May";
    months[6] = "Jun";
    months[7] = "Jul";
    months[8] = "Aug";
    months[9] = "Sep";
    months[10] = "Oct"; 
    months[11] = "Nov";
    months[12] = "Dec";
    today = new Date(); day = days[today.getDay() + 1]
    month = months[today.getMonth() + 1]
    date = today.getDate()
    document.write ("<font size=-3 face='Arial, Helvetica, sans-serif' color=6666ff> "+ day +
    ", " + month + ", " + date + " </font>")
    // -- end hiding 
