var menuSection = document.getElementById('menu');
var menuCount = menuSection.getElementsByTagName('div').length;

for(var i=0; i<menuCount; i++) {
	document.getElementById('menu').getElementsByTagName('div')[i].style.cursor = 'pointer';
}

document.getElementById('mHome').onclick = function() { window.location = '/home.htm';}
document.getElementById('mWho').onclick = function() { window.location = '/who_we_are.htm';}
document.getElementById('mProblem').onclick = function() { window.location = '/problem.htm';}
document.getElementById('mWhat').onclick = function() { window.location = '/what_we_do.htm';}
document.getElementById('mBenefits').onclick = function() { window.location = '/benefits.htm';}
document.getElementById('mHow').onclick = function() { window.location = '/how_to_help.htm';}