// JavaScript Document
var menulogic = function(id, direction, parentobj){
	if (direction == "over"){
		parentobj.style.color = "red";
		document.getElementById(id).style.display = 'block';
	}
	if (direction == "out"){
		parentobj.style.color = "#999";
		document.getElementById(id).style.display = 'none';
	}
}