function show_menu(id) {
	document.getElementById(id).style.background="url('/imgs/menu/menu1_bg.png')";
	document.getElementById(id).style.cursor="hand";
	document.getElementById(id).style.cursor="pointer";
}

function hide_menu(id) {
	document.getElementById(id).style.background="transparent"
}
