function date()
{
	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 time=new Date(); 
	var lmonth=months[time.getMonth() + 1]; 
	var date=time.getDate(); 
	var year=time.getFullYear();
	var hours=time.getHours();
	var minutes=time.getMinutes();
	var seconds=time.getSeconds();	

	document.write("<span class='DATE'>");
	document.write(date + ". " + lmonth + " " + year);
	document.write("</span>");


<!--	document.write(" kl. " + hours + ":" + minutes + ":" + seconds + "</p>"); --> 
}

function topMenu()
{
	document.write("<table cellpadding='0' cellspacing='0' border='0'><tr>");
	document.write("<td width='10'></td>");
	document.write("<td><a href='om_os.htm'>OM OS</a></td>");
	document.write("<td width='20'></td>");
	document.write("<td><a href='malykke.htm'>MALYKKE</a></td>");
	document.write("<td width='20'></td>");
	document.write("<td><a href='kontakt.htm'>KONTAKT</a></td>");
	document.write("<td width='20'></td>");
	document.write("<td><a href='default.htm'>FORSIDEN</a></td>");
	document.write("</tr></table>");
}

function eng_topMenu()
{
	document.write("<table cellpadding='0' cellspacing='0' border='0'><tr>");
	document.write("<td width='10'></td>");
	document.write("<td><a href='eng_om_os.htm'>ABOUT US</a></td>");
	document.write("<td width='20'></td>");
	document.write("<td><a href='eng_malykke.htm'>MALYKKE</a></td>");
	document.write("<td width='20'></td>");
	document.write("<td><a href='eng_kontakt.htm'>CONTACT</a></td>");
	document.write("<td width='20'></td>");
	document.write("<td><a href='eng_default.htm'>HOME</a></td>");
	document.write("</tr></table>");
}

function ger_topMenu()
{
	document.write("<table cellpadding='0' cellspacing='0' border='0'><tr>");
	document.write("<td width='10'></td>");
	document.write("<td><a href='ger_om_os.htm'>ÜBER UNS</a></td>");
	document.write("<td width='20'></td>");
	document.write("<td><a href='ger_malykke.htm'>MALYKKE</a></td>");
	document.write("<td width='20'></td>");
	document.write("<td><a href='ger_kontakt.htm'>KONTAKT</a></td>");
	document.write("<td width='20'></td>");
	document.write("<td><a href='ger_default.htm'>HOME</a></td>");
	document.write("</tr></table>");
}

function logo()
{
	document.write("<img src='grafik/interface/logo.gif' width='165' height='21' border='0' />");
}

