function naviMO(e) {
	document.getElementById(e).style.borderColor = '';
	document.body.style.cursor = 'default';
}
function naviMI(e) {
	document.getElementById(e).style.borderColor = '#8F0100';
 	if (document.all) {  
		document.body.style.cursor = 'hand';  
	} else {  
		document.body.style.cursor = 'pointer';  
	}
}
function infoMO(e) {
	document.body.style.cursor = 'default';
}
function infoMI(e) {
 	if (document.all) {  
		document.body.style.cursor = 'hand';  
	} else {  
		document.body.style.cursor = 'pointer';  
	}
}
