// Menu options description
var desc = new Array();
desc["home"] = "Introduction to this great web site.";
desc["shop"] = "Online shop where you can purchase Halle Berry merchandise.";
desc["pics"] = "The largest Halle Berry picture archive on the Net with 100's of high-quality, hi-res pictures.";
desc["wall"] = "A selection of Halle wallpapers to brighten up your desktop.";
desc["video"] = "Downloadable video clips featuring Halle.";
desc["news"] = "All the latest news about Halle Berry.";
desc["bio"] = "Outlines Halle's life so far, includes some contact addresses.";
desc["film"] = "Full list of Halle's TV and Film work to date.";
desc["gbook"] = "Guestbook for this site.<br>(Click to expand)";
	desc["gbook1"] = "View the current Guestbook entries.";
	desc["gbook2"] = "Please sign this Guestbook to make your opinions public.";
desc["feed"] = "Your chance to let me know what you think of this site.";
desc["links"] = "Links to other good Halle sites that are out there.";
desc["hist"] = "Complete history of the development of this site.";
desc["cred"] = "Listing the people responsible and contributers to this site.";
desc["contact"] = "Contact the webmaster of this site via e-mail.";
desc["donate"] = "Please help support this site with a small donation.";
desc["membership"] = "Sign-up for a FREE membership to access some restricted areas of this site.";

function showDesc(descKey)
{
	if (descKey == "") {
	   document.all["menu_subtext"].style.visibility = "hidden";
	} else {
	   document.all["menu_subtext"].style.left = document.body.scrollLeft + event.clientX + 25;
	   document.all["menu_subtext"].style.top = document.body.scrollTop + event.clientY;
	   document.all["menu_subtext"].innerHTML = desc[descKey];
	   document.all["menu_subtext"].style.visibility = "visible";
	};
	return false;
};

function showMenu(theMenu)
{
	with(eval(theMenu + ".style"))
	{
		display = ((display == "block")?"none":"block");
	};
	return false;
};
