Код:
   <HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- Все скрипты | http://javascript.clan.su -->
<!-- Лучшие скрипты только у нас -->

<!-- Begin
theDate= new Date();
months = new Array();
days = new Array();
months[1] ="http://javascript.clan.su/ime/jan.gif";
months[2] ="http://javascript.clan.su/ime/feb.gif";
months[3] ="http://javascript.clan.su/ime/mar.gif";
months[4] ="http://javascript.clan.su/ime/apr.gif";
months[5] ="http://javascript.clan.su/ime/may.gif";
months[6] ="http://javascript.clan.su/ime/jun.gif";
months[7] ="http://javascript.clan.su/ime/jul.gif";
months[8] ="http://javascript.clan.su/ime/aug.gif";
months[9] ="http://javascript.clan.su/ime/sep.gif";
months[10] ="http://javascript.clan.su/ime/oct.gif";
months[11] ="http://javascript.clan.su/ime/nov.gif";
months[12] ="http://javascript.clan.su/ime/dec.gif";
days[1] ="http://javascript.clan.su/ime/1st.gif";
days[2] ="http://javascript.clan.su/ime/2nd.gif";
days[3] ="http://javascript.clan.su/ime/3rd.gif";
days[4] ="http://javascript.clan.su/ime/4th.gif";
days[5] ="http://javascript.clan.su/ime/5th.gif";
days[6] ="http://javascript.clan.su/ime/6th.gif";
days[7] ="http://javascript.clan.su/ime/7th.gif";
days[8] ="http://javascript.clan.su/ime/8th.gif";
days[9] ="http://javascript.clan.su/ime/9th.gif";
days[10] ="http://javascript.clan.su/ime/10th.gif";
days[11] ="http://javascript.clan.su/ime/11th.gif";
days[12] ="http://javascript.clan.su/ime/12th.gif";
days[13] ="http://javascript.clan.su/ime/13th.gif";
days[14] ="http://javascript.clan.su/ime/14th.gif";
days[15] ="http://javascript.clan.su/ime/15th.gif";
days[16] ="http://javascript.clan.su/ime/16th.gif";
days[17] ="http://javascript.clan.su/ime/17th.gif";
days[18] ="http://javascript.clan.su/ime/18th.gif";
days[19] ="http://javascript.clan.su/ime/18th.gif";
days[20] ="http://javascript.clan.su/ime/20th.gif";
days[21] ="http://javascript.clan.su/ime/21st.gif";
days[22] ="http://javascript.clan.su/ime/22nd.gif";
days[23] ="http://javascript.clan.su/ime/23rd.gif";
days[24] ="http://javascript.clan.su/ime/24th.gif";
days[25] ="http://javascript.clan.su/ime/25th.gif";
days[26] ="http://javascript.clan.su/ime/26th.gif";
days[27] ="http://javascript.clan.su/ime/27th.gif";
days[28] ="http://javascript.clan.su/ime/28th.gif";
days[29] ="http://javascript.clan.su/ime/29th.gif";
days[30] ="http://javascript.clan.su/ime/30th.gif";
days[31] ="http://javascript.clan.su/ime/31st.gif";
function printDate() {
document.write('<img src="' + months[theDate.getMonth()+1] + '">'); // month
document.write('<br>');
document.write('<img src="' + days[theDate.getDate()] + '">'); // day
}
// End -->
</script>
</HEAD>

<!-- Вставьте эту часть кода в html документ -->

<BODY>

<center>

<script>
printDate();
</script>