	window.onload = rolloverInit;

	function rolloverInit() {
		for (var i=0; i<document.images.length; i++) {
			if (document.images[i].parentNode.tagName == "A") {
				setupRollover(document.images[i]);
			}
		}
	}

	function setupRollover(thisImage) {
		thisImage.outImage = new Image();
		thisImage.outImage.src = thisImage.src;
		thisImage.onmouseout = rollOut;
	
		thisImage.overImage = new Image();
		thisImage.overImage.src = "images/" + thisImage.id + "-over.jpg"; /* Ret koden så den refere til den rette sti og fileformat*/
		thisImage.onmouseover = rollOver;	
	}

	function rollOver() {
		this.src = this.overImage.src;
	}

	function rollOut() {
		this.src = this.outImage.src;
	}

function menuDk(){
	document.write("<a href='index_da.php'><img src='images/forside.jpg' alt='home' name='home' border='0' id='forside'/></a><a href='products_da.php'><img src='images/produkter.jpg' alt='products' border='0' id='produkter'/></a><img src='images/blank.jpg' /><a href='about_da.php'><img src='images/om_danlab.jpg' alt='about' border='0' id='om_danlab' /></a><a href='contact_da.php'><img src='images/kontakt-os.jpg' alt='Kontakt' border='0' id='kontakt-os' /></a>");
	}

function menuDe(){
	document.write("<a href='index_de.php'><img src='images/home.jpg' alt='Home' name='home' border='0' id='home'/></a><a href='products_de.php'><img src='images/produkte.jpg' alt='Produkte' border='0' id='produkte'/></a><img src='images/blank.jpg' alt='' /><a href='about_de.php'><img src='images/uhm-danlab.jpg' alt='Uhm Danlab Nutrition' border='0' id='uhm-danlab' /></a><a href='contact_de.php'><img src='images/kontakt-os.jpg' alt='Kontakt Uns' border='0' id='kontakt-os' /></a>");
	}
	
	function menuSe(){
	document.write("<a href='index.php'><img src='images/home.jpg' alt='home' name='home' border='0' id='home'/></a><a href='products.php'><img src='images/products.jpg' alt='products' border='0' id='products'/></a><img src='images/blank.jpg' alt='' /><a href='about.php'><img src='images/about.jpg' alt='about' border='0' id='Om Danlab Nutrition' /></a><a href='contact.php'><img src='images/contact.jpg' alt='Kontakt' border='0' id='contact' /></a>");
	}
	
		function menuNo(){
	document.write("<a href='index_no.php'><img src='images/forside.jpg' alt='Hjem' name='home' border='0' id='forside'/></a><a href='products_no.php'><img src='images/produkter.jpg' alt='produkter' border='0' id='produkter'/></a><img src='images/blank.jpg' /><a href='about_no.php'><img src='images/om_danlab.jpg' alt='om Danlab Nutrition' border='0' id='om_danlab' /></a><a href='contact_no.php'><img src='images/kontakt-os.jpg' alt='Kontakt' border='0' id='kontakt-os' /></a>");
	}
		function menuUk(){
	document.write("<a href='index.php'><img src='images/home.jpg' alt='Home' name='home' border='0' id='home'/></a><a href='products.php'><img src='images/products.jpg' alt='Products' border='0' id='products'/></a><img src='images/blank.jpg' alt='' /><a href='about.php'><img src='images/about.jpg' alt='about' border='0' id='about' /></a><a href='contact.php'><img src='images/contact.jpg' alt='Contact' border='0' id='contact' /></a>");
	}