function actmouseout(){
	this.className='';
}
function actmouseover(){
   this.className='menuon';
}

function SetHandlers(){
	for(x=1;x<7;x++) {
		document.getElementById('m'+x).onmouseover = actmouseover;
		document.getElementById('m'+x).onmouseout = actmouseout;
	}
}