/* fra menu.js */

function show(pId) {
	document.getElementById(pId).style.display='block';
}

function hide(pId) {
	document.getElementById(pId).style.display='none';
}

function over(pId) {
  	document.images[pId].src = '/design/images/' + pId + '_over_2011.png';
}

function out(pId) {
  	document.images[pId].src = '/design/images/' + pId + '_2011.png';
}


