<!-- Begin
theDate= new Date();
months = new Array();
days = new Array();
week=new Array();
todays=new Array();
months[1] ="jan.gif";
months[2] ="feb.gif";
months[3] ="mar.gif";
months[4] ="apr.gif";
months[5] ="may.gif";
months[6] ="jun.gif";
months[7] ="jul.gif";
months[8] ="aug.gif";
months[9] ="sep.gif";
months[10] ="oct.gif";
months[11] ="nov.gif";
months[12] ="dec.gif";
days[1] ="01st.gif";
days[2] ="02nd.gif";
days[3] ="03rd.gif";
days[4] ="04th.gif";
days[5] ="05th.gif";
days[6] ="06th.gif";
days[7] ="07th.gif";
days[8] ="08th.gif";
days[9] ="09th.gif";
days[10] ="10th.gif";
days[11] ="11th.gif";
days[12] ="12th.gif";
days[13] ="13th.gif";
days[14] ="14th.gif";
days[15] ="15th.gif";
days[16] ="16th.gif";
days[17] ="17th.gif";
days[18] ="18th.gif";
days[19] ="18th.gif";
days[20] ="20th.gif";
days[21] ="21st.gif";
days[22] ="22nd.gif";
days[23] ="23rd.gif";
days[24] ="24th.gif";
days[25] ="25th.gif";
days[26] ="26th.gif";
days[27] ="27th.gif";
days[28] ="28th.gif";
days[29] ="29th.gif";
days[30] ="30th.gif";
days[31] ="31st.gif";
week[0]="sun.gif";
week[1]="mon.gif";
week[2]="tue.gif";
week[3]="wed.gif";
week[4]="thu.gif";
week[5]="fri.gif";
week[6]="sat.gif";
todays[1] ="01.jpg";
todays[2] ="02.jpg";
todays[3] ="03.jpg";
todays[4] ="04.jpg";
todays[5] ="05.jpg";
todays[6] ="06.jpg";
todays[7] ="07.jpg";
todays[8] ="08.jpg";
todays[9] ="09.jpg";
todays[10] ="10.jpg";
todays[11] ="11.jpg";
todays[12] ="12.jpg";
todays[13] ="13.jpg";
todays[14] ="14.jpg";
todays[15] ="15.jpg";
todays[16] ="16.jpg";
todays[17] ="17.jpg";
todays[18] ="18.jpg";
todays[19] ="18.jpg";
todays[20] ="20.jpg";
todays[21] ="21.jpg";
todays[22] ="22.jpg";
todays[23] ="23.jpg";
todays[24] ="24.jpg";
todays[25] ="25.jpg";
todays[26] ="26.jpg";
todays[27] ="27.jpg";
todays[28] ="28.jpg";
todays[29] ="29.jpg";
todays[30] ="30.jpg";
todays[31] ="31.jpg";


function printDate() {
document.write('<img src="foto/' + months[theDate.getMonth()+1] + '">'); // month
//document.write('<img src="foto/' + days[theDate.getDate()] + '">'); // day
document.write('<img src="foto/'+week[theDate.getDay()]+'">' );//week
}
function showtoday()
{
document.write('<img src="foto/' + todays[theDate.getDate()] + '">'); // day	
}

