



_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="#900007";
offcolor="#59574B";
bordercolor="";
borderstyle="solid";
borderwidth=0;
separatorcolor="#000000";
separatorsize="0";
padding=1;
fontsize="9px";
fontstyle="normal";
fontweight="bold";
fontfamily="tahoma";
pagecolor="#900007";
valign="middle";
itemheight=20;
rawcss="padding-right:15px;";
}


with(subStyle=new mm_style()){
itemwidth=140;
itemheight=17;
valign="middle";
onbgcolor="#E5E4DF";
oncolor="#900007";
offbgcolor="#ffffff";
offcolor="#363727";
bordercolor="#666666";
borderstyle="solid";
borderwidth=1;
separatorcolor="#666666";
separatorsize="0";
padding=2;
fontsize="11";
fontstyle="normal";
fontfamily="tahoma";
pagecolor="#900007";
overfilter="Fade(duration=0.2);Alpha(opacity=85);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=140;
left=-1000;
alwaysvisible=1;
orientation="horizontal";

aI("text=WEBSITES;url=/1/56/websites.html;showmenu=menu56");

aI("text=E-HANDEL;url=/1/59/e-handel.html;showmenu=menu59");

aI("text=STREAMING MEDIA;url=/1/100/streaming-media.html;showmenu=menu100");

aI("text=IDENTITET;url=/1/57/identitet.html;showmenu=menu57");

aI("text=HOSTING;url=/1/60/hosting.html;showmenu=menu60");

aI("text=SEO;url=/1/61/seo.html;showmenu=menu61");

}





with(milonic=new menuname("menu56")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";


aI("text=proCMS 4.1;url=/1/86/procms-41.html;showmenu=menu86");

aI("text=Referencer;url=/1/87/referencer.html;showmenu=menu87");

aI("text=Extranet;url=/1/58/extranet.html;showmenu=menu58");


}









with(milonic=new menuname("menu86")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}


with(milonic=new menuname("menu87")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}


with(milonic=new menuname("menu58")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}


with(milonic=new menuname("menu59")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}









with(milonic=new menuname("menu100")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}









with(milonic=new menuname("menu57")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}









with(milonic=new menuname("menu60")){
style=subStyle;
overflow="scroll";
left="offset=0";
top="offset=5";



}









with(milonic=new menuname("menu61")){
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;
	}
	
	intLeftPos = width/2-380
	intLeftPos = intLeftPos + 145

	spos(gmobj("menu" + getMenuByName("Main Menu")),null,intLeftPos,null,null);
}

onload = setLeftPosOfMainMenu;
onresize = setLeftPosOfMainMenu;