var config = {
	'menu': {'bgOut': '#fff', 'bgOver': '#049', 'txtOut': '#039', 'txtOver': '#fff'}
};


function mOver(src, style) {
	src.style.backgroundColor = config['menu']['bgOver'];
	src.style.color = config['menu']['txtOver'];
}

function mOut(src, style) {
	src.style.backgroundColor = config['menu']['bgOut'];
	src.style.color = config['menu']['txtOut'];
}

