var aryMenuTips = new Array("Return to<br /><span style=\"letter-spacing: 0.1em;\"><strong>closingmyplant.com</strong></span> home.",
	"Discover <strong>10 programs and services</strong><br />we can provide for<br /><strong>orderly</strong> and <strong>effective</strong> plant closings.",
	"See what some of our<br /><strong>satisfied customers</strong> have to say<br />about our <strong>counsel</strong> and <strong>services</strong>.",
	"<strong>Ask Stuart</strong> a question about <strong>your plant</strong><br />or read his answers to <strong>frequently asked questions</strong>.",
	"Subscribe to our<br /><strong>Total Plant Deactivation</strong> newsletter<br />or read back issues in our archives.",
	"Find out how to contact us<br />for <strong>more information</strong><br />and <strong>assistance</strong> with your plant closing.");

function showMenuTip(x)
{
	var div = document.getElementById("menuTip");
	div.innerHTML = aryMenuTips[x];
	div.style.display = "block";
}

function hideMenuTip(x)
{
	var div = document.getElementById("menuTip");
	div.innerHTML = "";
	div.style.display = "none";
}
