theDate= new Date();
months = new Array();
days = new Array();
months[1] ="../grafik/datum/januari.gif";
months[2] ="../grafik/datum/februari.gif";
months[3] ="../grafik/datum/mars.gif";
months[4] ="../grafik/datum/april.gif";
months[5] ="../grafik/datum/maj.gif";
months[6] ="../grafik/datum/juni.gif";
months[7] ="../grafik/datum/juli.gif";
months[8] ="../grafik/datum/augusti.gif";
months[9] ="../grafik/datum/september.gif";
months[10] ="../grafik/datum/oktober.gif";
months[11] ="../grafik/datum/november.gif";
months[12] ="../grafik/datum/december.gif";
days[1] ="../grafik/datum/1.gif";
days[2] ="../grafik/datum/2.gif";
days[3] ="../grafik/datum/3.gif";
days[4] ="../grafik/datum/4.gif";
days[5] ="../grafik/datum/5.gif";
days[6] ="../grafik/datum/6.gif";
days[7] ="../grafik/datum/7.gif";
days[8] ="../grafik/datum/8.gif";
days[9] ="../grafik/datum/9.gif";
days[10] ="../grafik/datum/10.gif";
days[11] ="../grafik/datum/11.gif";
days[12] ="../grafik/datum/12.gif";
days[13] ="../grafik/datum/13.gif";
days[14] ="../grafik/datum/14.gif";
days[15] ="../grafik/datum/15.gif";
days[16] ="../grafik/datum/16.gif";
days[17] ="../grafik/datum/17.gif";
days[18] ="../grafik/datum/18.gif";
days[19] ="../grafik/datum/18.gif";
days[20] ="../grafik/datum/20.gif";
days[21] ="../grafik/datum/21.gif";
days[22] ="../grafik/datum/22.gif";
days[23] ="../grafik/datum/23.gif";
days[24] ="../grafik/datum/24.gif";
days[25] ="../grafik/datum/25.gif";
days[26] ="../grafik/datum/26.gif";
days[27] ="../grafik/datum/27.gif";
days[28] ="../grafik/datum/28.gif";
days[29] ="../grafik/datum/29.gif";
days[30] ="../grafik/datum/30.gif";
days[31] ="../grafik/datum/31.gif";
function printDate() {


document.write('<img src="' + days[theDate.getDate()] + '">'); // day
document.write('');
document.write('<img src="' + months[theDate.getMonth()+1] + '">'); // month
}

