window.onerror = null;

function over(id, color, menu) {
	if (id == "") {return false;}
	if (color == "") {
		document.getElementById(id).style.backgroundColor = "";
		}
	else {
		document.getElementById(id).style.backgroundColor = '#'+color;
		}
	if (menu != "no") {
		document.getElementById(id).style.cursor = 'pointer';
		}
	}

function out(id, color, menu) {
	if (id == "") {return false;}
	if (color == "") {
		document.getElementById(id).style.backgroundColor = "";
		}
	else {
		document.getElementById(id).style.backgroundColor = '#'+color;
		}
	if (menu != "no") {
		document.getElementById(id).style.cursor = '';
		}
	}

function menuOpen() {
	document.getElementById('menu_close').style.display='none'; 
	document.getElementById('menu_open').style.display='block'; 
	}

