function setMenu(c, obj)
{
	if(c == '1'){
		obj.style.backgroundImage='url(images/menuBgActive.jpg)';
	}
	else if(c == '2')
	{
		obj.style.backgroundImage='';
	}
}

function setUnderMenu(page)
{
	// -> OM OSS
	if(page == 'omoss' && document.getElementById('underMeny').rel != 'omoss'){
		document.getElementById('underMeny').style.marginLeft='807px';
		document.getElementById('underMenyMiddle').innerHTML = '<div onmouseover="this.style.background=\'#1c355d\';" onmouseout="this.style.background=\'inherit\';" style="border-top:1px #2a5393 solid;padding:10px;"><a style="font-size:13px;color:white;" href="kontakt.asp">Kontakt</a></div><div onmouseover="this.style.background=\'#1c355d\';" onmouseout="this.style.background=\'inherit\';" style="border-top:1px #2a5393 solid;padding:10px;"><a style="font-size:13px;color:white;" href="leveransvillkor.asp">Leveransvillkor</a></div><div onmouseover="this.style.background=\'#1c355d\';" onmouseout="this.style.background=\'inherit\';" style="border-top:1px #2a5393 solid;padding:10px;"><a style="font-size:13px;color:white;" href="historia.asp">Historia</a></div><div onmouseover="this.style.background=\'#1c355d\';" onmouseout="this.style.background=\'inherit\';" style="border-top:1px #2a5393 solid;padding:10px;"><a style="font-size:13px;color:white;" href="press.asp">Press</a></div>';
		document.getElementById('underMeny').style.display='inline';
		document.getElementById('underMeny').rel='omoss';
		document.getElementById('underMenyMiddle').focus();
	// <- OM OSS

	// -> OPEL
	}else if(page == 'opel' && document.getElementById('underMeny').rel != 'opel'){
		document.getElementById('underMeny').style.marginLeft='394px';
		document.getElementById('underMenyMiddle').innerHTML = '<div onmouseover="this.style.background=\'#1c355d\';" onmouseout="this.style.background=\'inherit\';" style="border-top:1px #2a5393 solid;padding:10px;"><a style="font-size:13px;color:white;" href="katalogen.asp">Opel katalog</a></div><div onmouseover="this.style.background=\'#1c355d\';" onmouseout="this.style.background=\'inherit\';" style="border-top:1px #2a5393 solid;padding:10px;"><a style="font-size:13px;color:white;" href="lexmaul.asp">Lexmaul tillbehör</a></div>';
		document.getElementById('underMeny').style.display='inline';
		document.getElementById('underMeny').rel='opel';
		document.getElementById('underMenyMiddle').focus();
	}else{
		document.getElementById('underMeny').style.display='none';
		document.getElementById('underMeny').rel='';
		document.getElementById('underMenyMiddle').innerHTML = '';
	}
	// <- OPEL
}
