function mshow(id) {
	document.getElementById(id).style.display = 'block';
}
function mopen(id) {
	document.getElementById(id).style.display = 'block';
	document.getElementById('a'+id).className = "men";
}
function mclose(id) {
	document.getElementById(id).style.display = 'none';
	document.getElementById('a'+id).className = "men2";
}
function mo(id) {
	document.getElementById(id).style.display = 'block';
}
function mc(id) {
	document.getElementById(id).style.display = 'none';
	document.getElementById('a'+id).className = "a";
}