// JavaScript Document

function prototypeSuckerfishList(listId) {
	if (document.all&&document.getElementById) {
		childLis=$(listId).getElementsByTagName("li");
		if ((typeof childLis != "undefined") && (childLis!=null)) {
			for (i=0; i<childLis.length; i++) {
				node = childLis[i];
				node.onmouseover=function() {
					$(this).addClassName("hover");
				}
				node.onmouseout=function() {
					$(this).removeClassName("hover");
				}
			}
		}
	}
}

