// JavaScript Document

function lukkAlle(){
	
	document.getElementById("main").style.visibility = "hidden";
	document.getElementById("main").style.height = "0px";
	document.getElementById("main").innerHTML = "<img src=\"images/spacer.gif\" width=\"1\" height=\"1\">";
	
	document.getElementById("tjenester").style.visibility = "hidden";
	document.getElementById("tjenester").style.height = "0px";
	document.getElementById("tjenester").innerHTML = "<img src=\"images/spacer.gif\" width=\"1\" height=\"1\">";
	
	document.getElementById("bater").style.visibility = "hidden";
	document.getElementById("bater").style.height = "0px";
	document.getElementById("bater").innerHTML = "<img src=\"images/spacer.gif\" width=\"1\" height=\"1\">";
	
	document.getElementById("priser").style.visibility = "hidden";
	document.getElementById("priser").style.height = "0px";
	document.getElementById("priser").innerHTML = "<img src=\"images/spacer.gif\" width=\"1\" height=\"1\">";
	
	
}


function apneUndermeny(element, height){

var elementet = element;
var hoyde = height + "px";
var innhold = null;

if(elementet == "main"){
	innhold = "<div class=\"menyitem1\" onClick=\"document.location.href='index.php';\">Om oss</div><div class=\"menyitem1\" onClick=\"document.location.href='index.php?2=sikkerhet';\">Sikkerhet</div>";
}

if(elementet == "tjenester"){
	innhold = "<div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=tjenester&2=skyssbat';\">Skyssbåt</div><div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=tjenester&2=charterturer';\">Charterturer</div><div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=tjenester&2=havfisketurer';\">Havfisketurer</div><div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=tjenester&2=oyhopping';\">Øyhopping</div><div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=tjenester&2=rib';\">RIB turer</div>";
}

if(elementet == "bater"){
	innhold = "<div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=bater&2=lovundjenta1';\">Lovundjenta 1</div><div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=bater&2=lovundjenta';\">Lovundjenta</div><div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=bater&2=snoillreppa';\">Snoillreppæ</div>";
}

if(elementet == "priser"){
	innhold = "<div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=priser&2=rib';\">RIB</div><div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=priser&2=havfiske';\">Havfiske</div><div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=priser&2=oyhopping';\">Øyhopping</div><div class=\"menyitem1\" onClick=\"document.location.href='index.php?1=priser&2=skyssbat';\">Skyssbåt</div>";
}


document.getElementById(elementet).style.visibility = "visible";
document.getElementById(elementet).style.height = hoyde;
document.getElementById(elementet).innerHTML = innhold;
}

function menyer(type){
	var menyen = type;
	
	if(menyen == "main"){	
	apneUndermeny('main', '100');
	}
	
	if(menyen == "tjenester"){	
	apneUndermeny('tjenester', '100');
	}
	
	if(menyen == "bater"){	
	apneUndermeny('bater', '100');
	}
	
	if(menyen == "priser"){	
	apneUndermeny('priser', '100');
	}
	
	
}

/*function undermenyer(art){
	var undermenyen = art;
	
	if(undermenyen == "yachtclub"){
	apneUndermeny('pros_under', '75');
	apneUndermeny('prosj_under_corp', '160');
	}
	
	
}*/