// Menu options description
var desc = new Array();
desc["home"] = "Introduction to this great web site.";
desc["shop"] = "Online shop where you can purchase Tyra Banks merchandise.";
desc["news"] = "All the latest news about Tyra Banks.";
desc["pics"] = "The largest Tyra Banks picture archive on the Net with 100's of high-quality, hi-res pictures.";
desc["wall"] = "A selection of Tyra wallpapers to brighten up your desktop.";
desc["video"] = "Downloadable video clips featuring Tyra.<br>(Click to expand)";
	desc["vid_shake"] = "Full streaming music video of <i>Shake Ya Body</i> by Tyra Banks.";
	desc["vid_clips"] = "A variety of video clips featuring Tyra. Essential viewing.";
	desc["vid_si98"] = "Superb clips of Tyra from the <i>Sports Illustrated Swimsuit '98</i> edition.";
desc["bio"] = "Outlines Tyra's life so far, includes some contact addresses.";
desc["film"] = "Full list of Tyra's TV and Film work to date.";
desc["art"] = "Several articles written about Tyra.<br>(Click to expand)";
	desc["art1"] = "Tyra explains how her boobs are definitely the real thing!";
	desc["art2"] = "Tyra tells <i>Details</i> magazine how she's happy being a sex symbol.";
	desc["art3"] = "Tyra explains how she just wants a normal guy (So there's hope for us all!).";
	desc["art4"] = "Tyra hangs out with the <i>Lakers</i>.";
	desc["art5"] = "Tyra unveils the Victorias Secret $3 million bra.";
	desc["art6"] = "Article about the VS show broadcast live on the Internet.";
	desc["art7"] = "<i>Cover Girl</i> article on Tyra's life story.";
	desc["art8"] = "Tyra plays a WNBA star in a new Disney film.";
	desc["art9"] = "Personality profile of Tyra written by professional astrologers.";
	desc["art10"] = "Song lyrics to Tyra's first ever song, <i>Shake Ya Body</i>.";
desc["inter"] = "Several in-depth Q&A style interviews Tyra has given.<br>(Click to expand)";
	desc["inter1"] = "Tyra talks about modelling, career goals, her likes & dislikes, etc.";
	desc["inter2"] = "Tyra talks about dating Seal and other stuff.";
	desc["inter3"] = "Interview from when Tyra was 21.";
	desc["inter4"] = "Tyra talks about her lingerie among other things!";
	desc["inter5"] = "Two accounts of Tyra appearing on German TV show 'Wetten dass'.";
	desc["inter6"] = "Tyra talks about guys, food and her curves!";
desc["down"] = "Various other goodies for you to download.";
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["hist"] = "Complete history of the development of this site.";
desc["links"] = "Links to other good Tyra sites that are out there.";
desc["tzone"] = "Information about the Tyra Banks T-Zone Foundation.";
desc["contact"] = "Contact the webmaster of this site via e-mail.";
desc["cred"] = "Listing the people responsible and contributers to this site.";
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;
};
