// menu

function onEnter(div, bild, color) {
	document.getElementById(div).style.backgroundColor = color;
}

function onExit(div, bild, color, picSrc) {	
	document.getElementById(div).style.backgroundColor = color;
}

function onEnterU(div, color) {
	document.getElementById(div).style.backgroundColor = color;	
}

function onExitU(div, color) {	
	document.getElementById(div).style.backgroundColor = color;
}
