var li
function mouseover(li) {
	document.getElementById(li).style.backgroundColor='#efefef';
	document.getElementById('img1'+li).src='img/menu_over_left.jpg';
	document.getElementById('img2'+li).src='img/menu_over_right.jpg';
}
function onmousoutactive(li) {
	document.getElementById(li).style.backgroundColor='#054363';
	document.getElementById('img1'+li).src='img/menu_active_left.jpg';
	document.getElementById('img2'+li).src='img/menu_active_right.jpg';
}

function mouseout(li) {
	document.getElementById(li).style.backgroundColor='#FFF';
	document.getElementById('img1'+li).src='img/menu_spacer.jpg';
	document.getElementById('img2'+li).src='img/menu_spacer.jpg';
}

<!--
function submitenter(myfield,e)
{
	var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;

	if (keycode == 13)
	{
	   myfield.form.submit();
	   return false;
	}
	else
	   return true;
}

//-->