<!--
function mouseover(id) {
	document.getElementById(id).style.borderTop="1px solid darkblue";
}

function mouseout(id) {
	document.getElementById(id).style.borderTop="0px solid darkblue";
}


function mouseup(id) {
	document.getElementById(id).style.borderTop="0px solid darkblue";
}

function mousedown(id) {
	document.getElementById(id).style.borderTop="3px solid darkblue";
}



function mouseoverleft(id) {
	document.getElementById(id).style.backgroundImage="url(grafik/meny_left_over.png)";
}
function mouseoutleft(id) {
	document.getElementById(id).style.backgroundImage="url(grafik/meny_left.png)";
}
function mouseovermiddle(id) {
	document.getElementById(id).style.backgroundImage="url(grafik/meny_middle_over.png)";
}
function mouseoutmiddle(id) {
	document.getElementById(id).style.backgroundImage="url(grafik/meny_middle.png)";
}
function mouseoverright(id) {
	document.getElementById(id).style.backgroundImage="url(grafik/meny_right_over.png)";
}
function mouseoutright(id) {
	document.getElementById(id).style.backgroundImage="url(grafik/meny_right.png)";
}
//-->