  <!--
        today = new Date
        weekDayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
        monthName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")
        cheerySalutation = new Array ("another Beautiful Day!","Start of A Great Week!","another Day to Save Money","another Hump Day!","another Turkey Day at the Deli","another Thank Goodness it is Friday","another Great Weekend Day")
        function printDate()
            {document.write("Today is " + weekDayName[today.getDay()] + ", " + monthName[today.getMonth()] + " " + today.getDate()+ ", 2009 " + cheerySalutation[today.getDay()])}
        -->