// JavaScript Document
//*** COPY OF ORIGINAL FILE, CUSTOMIZED FOR /INVESTORS/ SECTION ***



// **Start: Live text nav menu **

function navMo(obj)

{

   if (obj.className == "On") obj.className = "";

   else obj.className = "On";

}

// **End: Live text nav menu **



// **Start: SectionNavigation control **

function buildSub(index)  // builds the links dropdown list

{

   if (!isNaN(index)) // make sure a number was passed in

   {

      dropdownList.disabled = false;

      dropdownList.options.length = 0;  // clears the links drop down list



	   var selArray = eval("a" + index);

	   for (var i=0; i < selArray.length; i++)

	   {

		   eval("dropdownList.options[i]=" + "new Option" + selArray[i]);  // build the drop down list options from an array

		   if ((window.location.pathname.toLowerCase() + window.location.search.toLowerCase()) == dropdownList.options[i].value.toLowerCase()) dropdownList.options[i].selected = true;

	   }

	}

}

function navigateToTopic(object)

{

   var page = object.options[object.selectedIndex].value;

   if (page != "")

   {

      window.open(page, "_self");

   }

}

// **End: SectionNavigation control **