function startList() {
	if (document.all&&document.getElementById) {
		navMenuElements = document.getElementById("leftHandNavigation").getElementsByTagName("li");
		for (i = 0; i < navMenuElements.length; i++) {
			navMenuElements[i].onmouseover=function(){
				this.className=this.className.replace(" nl2-boff", " nl2-boff-over");
				this.className=this.className.replace(" nl1-boff-closed", " nl1-boff-closed-over");
				this.className=this.className.replace(" nl1-boff-none", " nl1-boff-none-over");
				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");
				this.className=this.className.replace(" nl8-boff", " nl8-boff-over");
				this.className=this.className.replace(" nl7-boff-closed", " nl7-boff-closed-over");
				this.className=this.className.replace(" nl7-boff-none", " nl7-boff-none-over");
			}
			navMenuElements[i].onmouseout=function() {
				this.className=this.className.replace(" nl2-boff-over", " nl2-boff");
				this.className=this.className.replace(" nl1-boff-closed-over", " nl1-boff-closed");
				this.className=this.className.replace(" nl1-boff-none-over", " nl1-boff-none");
				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");
				this.className=this.className.replace(" nl8-boff-over", " nl8-boff");
				this.className=this.className.replace(" nl7-boff-closed-over", " nl7-boff-closed");
				this.className=this.className.replace(" nl7-boff-none-over", " nl7-boff-none");
				
			}
		}
	}
}
