function InsertMenu()
{
	var strRoot = "http://www.anesmad.dk/";
	var strMenu = "<span id='MenuOpskrifter' style='visibility:hidden;position:absolute;left:0px;top:-2px;width:100%;height:100%'>\
			<center>\
				<table width='750' border='0'>\
					<tr>\
						<td align='left' width='5'>\
						</td>\
						<td class='Menu' width='100' onmouseover='parent.Top.MouseOverMenu();' onmouseout='parent.Top.MouseOutMenu(\"Opskrifter\");' valign='top'>\
							<a href='"+strRoot+"opskrifter.html'>Oversigt</a><br>\
							<a href='"+strRoot+"/func/billeder.html'>Billeder</a><br>\
							<a href='"+strRoot+"/func/foreslaaops.html'>Foresl&aring;</a><br>\
						</td>\
						<td>\
						</td>\
					</tr>\
				</table>\
			</center>\
		</span>\
		<span id='MenuArtikler' style='visibility:hidden;position:absolute;left:0px;top:-2px;width:100%;height:100%'>\
			<center>\
				<table width='750' border='0'>\
					<tr>\
						<td align='left' width='85'>\
						</td>\
						<td class='Menu' width='100' onmouseover='parent.Top.MouseOverMenu();' onmouseout='parent.Top.MouseOutMenu(\"Artikler\");' valign='top'>\
							<a href='"+strRoot+"/artikler/artikler.html'>Oversigt</a><!--br>\
							<a href='"+strRoot+"/artikler/foreslaaart.html'>Foresl&aring;</a><br>\
							<a href='"+strRoot+"/artikler/blivskribent.html'>Bliv skribent</a><br-->\
						</td>\
						<td>\
						</td>\
					</tr>\
				</table>\
			</center>\
		</span>\
		</span>\
		<span id='MenuFunktioner' style='visibility:hidden;position:absolute;left:0px;top:-2px;width:100%;height:100%'>\
			<center>\
				<table width='750' border='0'>\
					<tr>\
						<td align='left' width='150'>\
						</td>\
						<td class='Menu' width='100' onmouseover='parent.Top.MouseOverMenu();' onmouseout='parent.Top.MouseOutMenu(\"Funktioner\");' valign='top'>\
							<a href='"+strRoot+"/func/soeg.html'>S&oslash;g</a><br>\
							<a href='"+strRoot+"/nyhedsbrev/nyhedsbrev.html'>Nyhedsbrev</a><br>\
							<a href='"+strRoot+"/func/tips.html'>Tips</a><br>\
							<A href='http://www.fonager.dk/forum/forum.asp?master_id=2655' target=_blank>Fora</a><br>\
						</td>\
						<td>\
						</td>\
					</tr>\
				</table>\
			</center>\
		</span>\
		<span id='MenuInfo' style='visibility:hidden;position:absolute;left:0px;top:-2px;width:100%;height:100%'>\
			<center>\
				<table width='750' border='0'>\
					<tr>\
						<td align='left' width='235'>\
						</td>\
						<td class='Menu' width='100' onmouseover='parent.Top.MouseOverMenu();' onmouseout='parent.Top.MouseOutMenu(\"Info\");' valign='top'>\
							<a href='"+strRoot+"info/baggrund.html'>Baggrund</a><br>\
							<a href='"+strRoot+"info/stoet.html'>St&oslash;t</a><br>\
							<a href='"+strRoot+"info/bannerinfo.html'>Annonc&oslash;r</a><br>\
						</td>\
						<td>\
						</td>\
					</tr>\
				</table>\
			</center>\
		</span>";
		
	document.body.insertAdjacentHTML("beforeEnd", strMenu);
}

function MoveMenus()
{
	newTop = document.body.scrollTop -2;
	MenuOpskrifter.style.top = newTop;
	MenuArtikler.style.top	 = newTop;
	MenuFunktioner.style.top = newTop;
	MenuInfo.style.top		 = newTop;
}
	