



_menuCloseDelay=500           // The time delay for menus to remain visible on mouse out
_menuOpenDelay=150            // The time delay before menus open on mouse over
_subOffsetTop=-5              // Sub menu top offset
_subOffsetLeft=5            // Sub menu left offset

with(mainStyle=new mm_style()){
oncolor="";
offcolor="";
bordercolor="";
borderstyle="solid";
borderwidth=0;
separatorcolor="#000000";
separatorsize="0";
padding=1;
fontsize="10px";
fontstyle="normal";
fontweight="bold";
fontfamily="tahoma";
pagecolor="";
valign="middle";
itemheight=20;
rawcss="padding-right:15px;";
}


with(subStyle=new mm_style()){
itemwidth=140;
itemheight=17;
valign="middle";
onbgcolor="";
oncolor="#000309";
offbgcolor="#ffffff";
offcolor="#000000";
bordercolor="#AFAFAF";
borderstyle="solid";
borderwidth=1;
separatorcolor="#666666";
separatorsize="0";
padding=2;
fontsize="11";
fontstyle="normal";
fontfamily="tahoma";
pagecolor="#000309";
overfilter="Fade(duration=0.2);Alpha(opacity=90);Shadow(color='#777777', Direction=135, Strength=5)";
outfilter="randomdissolve(duration=0.3)";
rawcss="padding-left:2px;";
}




with(milonic=new menuname("Main Menu")){
style=mainStyle;
top=138;
left=-1000;
alwaysvisible=1;
orientation="horizontal";

aI("text=STARTSIDE;url=/19/128/startside.html;showmenu=menu128");

aI("text=HVEM ER VI?;url=;showmenu=menu175");

aI("text=LINKS;url=/19/181/links.html;showmenu=menu181");

aI("text=SAMARBEJDSPARTNERE;url=/19/182/samarbejdspartnere.html;showmenu=menu182");

aI("text=NYHEDSBREV;url=/19/183/nyhedsbrev.html;showmenu=menu183");

aI("text=KONTAKT OS;url=/19/184/kontakt-os.html;showmenu=menu184");

aI("text=KALENDER;url=/19/185/windowskalender.html;showmenu=menu185");

}





with(milonic=new menuname("menu128")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}









with(milonic=new menuname("menu175")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";


aI("text=Firmaprofil;url=/19/176/firmaprofil.html;showmenu=menu176");

aI("text=Handelsbetingelser;url=/19/177/handelsbetingelser.html;showmenu=menu177");

aI("text=River of Life;url=/19/178/river-of-life.html;showmenu=menu178");


}









with(milonic=new menuname("menu176")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}


with(milonic=new menuname("menu177")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}


with(milonic=new menuname("menu178")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";


aI("text=Billedgalleri;url=/19/179/billedgalleri.html;showmenu=menu179");

aI("text=Besøg 2006;url=/19/180/besoeg-2006.html;showmenu=menu180");


}


with(milonic=new menuname("menu181")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}









with(milonic=new menuname("menu182")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}









with(milonic=new menuname("menu183")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}









with(milonic=new menuname("menu184")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}









with(milonic=new menuname("menu185")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}










drawMenus();

function setLeftPosOfMainMenu() {
	var ie4_check = (document.all && !document.getElementById) ? 	true : false;
	var ie5_check = (document.all && document.getElementById) ? 	true : false;
	if (ie4_check || ie5_check) {
		width = document.body.clientWidth;
		} 
	else {
		width = window.innerWidth;
	}
	
    if (width>980) {
    	intLeftPos = width/2-490
		intLeftPos = intLeftPos + 190
    }
    else {
    	intLeftPos = 190
    }
	
    spos(gmobj("menu" + getMenuByName("Main Menu")),null,intLeftPos,null,null);
}

onload = setLeftPosOfMainMenu;
onresize = setLeftPosOfMainMenu;