// JavaScript Document
function mouseOver(cel) {
	cel.style.backgroundColor='#F5A09E';
}

function mouseOut(cel) {
	cel.style.backgroundColor='#EB413D';
}

function submitForm(page,id,idx) {
	document.menuLink.pageTo.value=page;
	document.menuLink.idOf.value=id;
	document.menuLink.idEx.value=idx;
	document.menuLink.submit();
}