<!-- Original:  Jeff Harding (jbh@site-ations.com) -->
<!-- Web Site:  http://www.site-ations.com -->

<!-- Day images (c): http://www.site-ations.com -->
<!-- Month images (c): http://www.bruce-hamilton.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
theDate= new Date();
months = new Array();
days = new Array();
months[1] ="images/jan.gif";
months[2] ="images/feb.gif";
months[3] ="images/mar.gif";
months[4] ="images/apr.gif";
months[5] ="images/may.gif";
months[6] ="images/jun.gif";
months[7] ="images/jul.gif";
months[8] ="images/aug.gif";
months[9] ="images/sep.gif";
months[10] ="images/oct.gif";
months[11] ="images/nov.gif";
months[12] ="images/dec.gif";
days[1] ="images/1st.gif";
days[2] ="images/2nd.gif";
days[3] ="images/3rd.gif";
days[4] ="images/4th.gif";
days[5] ="images/5th.gif";
days[6] ="images/6th.gif";
days[7] ="images/7th.gif";
days[8] ="images/8th.gif";
days[9] ="images/9th.gif";
days[10] ="images/10th.gif";
days[11] ="images/11th.gif";
days[12] ="images/12th.gif";
days[13] ="images/13th.gif";
days[14] ="images/14th.gif";
days[15] ="images/15th.gif";
days[16] ="images/16th.gif";
days[17] ="images/17th.gif";
days[18] ="images/18th.gif";
days[19] ="images/19th.gif";
days[20] ="images/20th.gif";
days[21] ="images/21st.gif";
days[22] ="images/22nd.gif";
days[23] ="images/23rd.gif";
days[24] ="images/24th.gif";
days[25] ="images/25th.gif";
days[26] ="images/26th.gif";
days[27] ="images/27th.gif";
days[28] ="images/28th.gif";
days[29] ="images/29th.gif";
days[30] ="images/30th.gif";
days[31] ="images/31st.gif";
function printDate(jmonth,jday, jyear) {
document.write('<img src="' + months[jmonth] + '">'+'<img src="' + days[jday] + '">'); // month
//document.write('<br>');
//document.write('<img src="' + days[jday] + '">'); // day
document.write('<H2 style="margin-top:0px">Year ' + jyear + '</H2>'); //year
}
//  End -->
