// Date featured at top of page template
// Danish Language

	var days=new Array(8);
	days[1] = "S&oslash;ndag";
	days[2] = "Mandag";
	days[3] = "Tirsdag";
	days[4] = "Onsdag";
	days[5] = "Torsdag";
	days[6] = "Fredag";
	days[7] = "L&oslash;rdag";
	var months=new Array(13);
	months[1] = "januar";
	months[2] = "februar";
	months[3] = "marts";
	months[4] = "april";
	months[5] = "maj";
	months[6] = "juni";
	months[7] = "juli";
	months[8] = "august";
	months[9] = "september";
	months[10] = "oktober";
	months[11] = "november";
	months[12] = "december";
	var dateObj=new Date()
	var wday=days[dateObj.getDay() + 1]
	var lmonth=months[dateObj.getMonth() + 1]
	var date=dateObj.getDate()
	document.write(wday + ", " + lmonth + " " + date )

