 var hoverImages=new Array();
function setupRollOvers() { }
function loadedHoverImage(e) { var input=document.getElementById(this.inputID); if (input) { input.hoverCount=0; if (input.addEventListener) { input.addEventListener("mouseover", showHoverImage, false); input.addEventListener("focus", showHoverImage, false); input.addEventListener("mouseout", hideHoverImage, false); input.addEventListener("blur", hideHoverImage, false); } else if (input.attachEvent) { input.attachEvent("onmouseover", showHoverImage); input.attachEvent("onfocus", showHoverImage); input.attachEvent("onmouseout", hideHoverImage); input.attachEvent("onblur", hideHoverImage); } } }
function showHoverImage(e) { if (!e) { e=window.event; }
var input; if (this !=window) { input=this; } else if (e && e.srcElement) { input=e.srcElement; } input.hoverCount++; if (input.hoverCount==1) { input.src=input.src.replace("_up.jpg", "_ovr.jpg"); } }
function hideHoverImage(e) { if (!e) { e=window.event; }
var input; if (this !=window) { input=this; } else if (e && e.srcElement) { input=e.srcElement; } input.hoverCount--; if (input.hoverCount==0) { input.src=input.src.replace("_ovr.jpg", "_up.jpg"); } } setupRollOvers(); 

