// JavaScript Document

	wpm1_Hover = function() {

	var wpmEls = document.getElementById("wpm1").getElementsByTagName("li");

	for (var i=0; i<wpmEls.length; i++) {

		wpmEls[i].onmouseover = function() {

			this.className += " wpmhover";

		}

		wpmEls[i].onmouseout = function() {

			this.className = this.className.replace(new RegExp(" wpmhover\\b"), "");

		}

	}

}

if (window.attachEvent) window.attachEvent("onload", wpm1_Hover);


