
function menuMouseOn(obj){
	var child = obj.firstChild;

	//child.style.color="white";
	obj.style.backgroundColor='#3D9E2C';
	child.style.textDecoration="underline";
}
function menuMouseOut(obj){
	var child = obj.firstChild;

	//child.style.color="white";
	obj.style.backgroundColor='#50C550';
	child.style.textDecoration="none";
}



function goNext(obj){
	var child = obj.firstChild;
	child.style.color="yellow";
	location.href=child.href;
}
