
	// -------------------------------------------------------
	// Array of bucket descriptions
	// -------------------------------------------------------

		var aCatDesc = new Array(9);
		aCatDesc[0] = '<H2 CLASS="clsBlue">Happenstance, Coincidence, Enemy Action</H2><P>Each web page on this web site is devoted to a single movie. The page is subdivided into three categories. Happenstance (Prologue), Coincidence (Main body) and Enemy action (Epilogue).</P>';
		aCatDesc[1] = '<H2 CLASS="clsBlue">Sean Connery as 007</H2><P>James Bond first appeared on the big screen in 1962 in "Dr. No," starring Sean Connery as 007. These pages track Sean Connery as he portrays 007 through 7 films. Click the link above to start.</P>';
		aCatDesc[2] = '<H2 CLASS="clsBlue">George Lazenby as OO7</H2><P>Stepping into the Bond role at a mere 29 years of age, Lazenby possessed the physical presence and athletic agility of a good Bond, but not the level of acting experience the role demanded.Click the link above to start. </P>';
		aCatDesc[3] = '<H2 CLASS="clsBlue">Roger Moore as 007</H2><P>Roger Moore is The savior of the Bond series. No one (except the Broccolis) thought the series would survive after Connery left ,but Roger Moore brought tongue-in-cheek, over-the-top sense of fun and re-energized the series. Click the link above to start.</P>';
		aCatDesc[4] = '<H2 CLASS="clsBlue">Timothy Dalton as 007</H2><P>Bond tries to be Shakespearean with Timothy Dalton. And Fails. With a capital F. Click the link above .</P>';
		aCatDesc[5] = '<H2 CLASS="clsBlue">Pierce Brosnan as 007</H2><P>Pierce Brosnan revives the 007 franchise, six years since Timothy Dalton bored fans to tears. Debuts with GoldenEye, the film that resurrected Bond and Vodka Martini. The world is safe again. Click the link above to start.</P>';
		aCatDesc[6] = '<H2 CLASS="clsBlue">Daniel Craig as 007</H2><P>Daniel take over from Pierce Brosnan as a back to basics spy. The world was never safer. Click the link above to start.</P>';
		aCatDesc[7] = '<H2 CLASS="clsBlue">Links</H2><P>This section contains links to the best Bond web sites on the Net. Also find the best web sites about Dynamic HTML, authoring with HTML and CSS, and JavaScript programming. Click the link above to start.</P>';
		aCatDesc[8] = '<H2 CLASS="clsBlue">About myself</H2><P>Here I get megalomaniacal and disclose my plans for World domination. Read about me and why I spent my time making this web site.Check out and sign my guest book. Click the link above to start.</P>';
		
	// -------------------------------------------------------
	// Event Handlers
	// -------------------------------------------------------

	function LeftNav_mouseover()
	{
		if ("complete" == document.readyState && "A" == (eSrc = window.event.srcElement).tagName.toUpperCase())
		{
			var sId = eSrc.id;
			var iCatNum = sId.substring(sId.lastIndexOf("-")+1);
			if (eCatDiv = document.all("divCatDesc")) eCatDiv.innerHTML = aCatDesc[iCatNum];
		}
	}

	function LeftNav_click()
	{
		if ("A" == (eSrc = window.event.srcElement).tagName.toUpperCase() && null == eSrc.getAttribute("expNoToc"))
		{
			eSrc.href = "/" +  eSrc.pathname;
		}
	}

	// -------------------------------------------------------
	// Event-binding
	// -------------------------------------------------------

	if (eLeftNav = document.all("tblLeftNav"))
	{
		tblLeftNav.onmouseover = LeftNav_mouseover;
		tblLeftNav.onclick = LeftNav_click;
	}
