function startList3() {


	if (document.all&&document.getElementById) {


		navMenuElements = document.getElementById("leftHandNavigation3").getElementsByTagName("li");


		for (i = 0; i < navMenuElements.length; i++) {


			navMenuElements[i].onmouseover=function(){


				this.className=this.className.replace(" nl6-boff", " nl6-boff-over");


				this.className=this.className.replace(" nl5-boff-closed", " nl5-boff-closed-over");


				this.className=this.className.replace(" nl5-boff-none", " nl5-boff-none-over");


			}


			navMenuElements[i].onmouseout=function() {


				this.className=this.className.replace(" nl6-boff-over", " nl6-boff");


				this.className=this.className.replace(" nl5-boff-closed-over", " nl5-boff-closed");


				this.className=this.className.replace(" nl5-boff-none-over", " nl5-boff-none");


			}


		}


	}


}


