function LmOver(elem) {
	elem.style.backgroundColor = "#606060";
	elem.style.cursor = 'hand'
	}

function LmOut(elem) {
	elem.style.backgroundColor = "black";
	}

function LmDown(elem) {
	elem.style.backgroundColor = "green";
	}

function LmUp(path) {
	location.href = path;
	}
function LmOver2(elem) {
	elem.style.backgroundColor = "#E0E0E0";
	elem.style.cursor = 'hand'
	}

function LmOut2(elem) {
	elem.style.backgroundColor = "transparent";
	}

function LmDown2(elem) {
	elem.style.backgroundColor = "green";
	}

function LmUp2(path) {
	location.href = path;
	}
