<!--
function barOn(td){
			if(document.getElementById||(document.all && !(document.getElementById))){
				td.style.backgroundImage="url(../images/nav-bar_bkd-roll.jpg)";
				td.style.backgroundColor="#4c5f7f";
		}
	}

function barOff(td){
			if(document.getElementById||(document.all && !(document.getElementById))){
				td.style.backgroundImage="none";
				td.style.backgroundColor="transparent";
		}
	}	


/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//Contents for menu 1
var menu1=new Array()
menu1[0]='<a href="history.shtml">History</a>'
menu1[1]='<a href="missionvalues.shtml">Mission &amp; Values</a>'
menu1[2]='<a href="people.shtml">People</a>'
menu1[3]='<a href="management.shtml">Management</a>'
menu1[4]='<a href="leadership.shtml">Leadership</a>'

//Contents for menu 2, and so on
var menu2=new Array()
/* actual link menu2[0]='<a href="https://www.jdclark.com/i_login.shtml">Investor Login</a>'  */
menu2[0]='<a href="https://www.jdclark.com/i_login.shtml">Investor Login</a>'
menu2[1]='<a href="https://www.jdclark.com/FastPro.html">Fund Manager Login</a>'
menu2[2]='<a href="https://secure.jdclark.com/sgd">Employee Login</a>'


// Script for Drop down with No button
function dropSelect()
   {
   var w = document.form1.formList.selectedIndex;
   var url_add = document.form1.formList.options[w].value;
   window.location.href = url_add;
   }
