//CREATE THE PULLDOWN MENU h1 = "<option value=none>WE CAN HELP YOU...</option>"h2 = "<option value=consulting.html>Manage a business transition</option>"h3 = "<option value=consulting.html>Build an effective team</option>"h4 = "<option value=workshops.html>Create a customized workshop</option>"h5 = "<option value=consulting.html>Leverage personality dynamics</option>"h6 = "<option value=coaching.html>Hone leadership skills</option>"h7 = "<option value=coaching.html>Develop self-awareness</option>"message = "<select class=copy name=helplist onChange=goTo(this.form) style='width:230px;'>";message = message + h1+h2+h3+h4+h5+h6+h7 + "</select>";document.write(message);function goTo(form) {	goPage = form.helplist.options[form.helplist.selectedIndex].value;	if (goPage != "none") {		//alert (goPage);		self.location = goPage;	}}// End -->