function toggleDiv(id,show) {
document.getElementById(id).style.display=(show) ? 'block' : 'none';
};

function shadeDiv(div,color) {
div.style.backgroundColor=color;
toggleDiv('menu_gallery',false);
}