<!-- 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] ="jan.JPG";
months[2] ="feb.JPG";
months[3] ="mar.JPG";
months[4] ="apr.JPG";
months[5] ="maj.JPG";
months[6] ="jun.JPG";
months[7] ="jul.JPG";
months[8] ="aug.JPG";
months[9] ="sep.JPG";
months[10] ="okt.JPG";
months[11] ="nov.JPG";
months[12] ="dec.JPG";
 theDate= new Date();
months1 = new Array();
days = new Array();
months1[1] ="Januar";
months1[2] ="Febuar";
months1[3] ="Marts";
months1[4] ="April";
months1[5] ="Maj";
months1[6] ="Juni";
months1[7] ="Juli";
months1[8] ="August";
months1[9] ="September";
months1[10] ="Oktober";
months1[11] ="November";
months1[12] ="December";

function printDate() {
document.write('<div> <h2>' + months1[theDate.getMonth()+1] +  '</h2></div>'); // month overskrift
document.write('<img src="\mrdfoto/' + months[theDate.getMonth()+1] + '">'); // month



}
//  End -->

