	window.onload=function(){
			allDates= document.getElementsByTagName("span");
			for(i=0;i<allDates.length;i++){
				//var mijnDatum= allDates[i].getAttribute("class");
				var mijnDatum= allDates[i].className;
				if(mijnDatum=="bigdate"){
					oudeInfo=allDates[i].innerHTML;
					nI= oudeInfo.split("/");
					dag=nI[0];
					maand=nI[1];
					jaar=nI[2];
					var Kalender= new Array("januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december");
					var maandNaam= Kalender[maand-1];
					allDates[i].innerHTML= "<br  style='line-height:4px;height:1px;'><span style='font-weight:bold;font-size:20px;line-height:21px;padding:0;margin:0;'>" + dag + "</span><br style='line-height:1px;height:1px;'><span style='font-weight:bold;font-size:11px;line-height:13px;padding:0px;margin:0;'>" + maandNaam + "</span><br/><span style='font-weight:bold;font-size:12px;padding:1px;margin:0;line-height:13px;'>" +jaar + "</span>";
				}
				
			}
		}