﻿		fmHover = function() {
		var fmEls = document.getElementById("FireMenu").getElementsByTagName("li");
			for (var i=0; i<fmEls.length; i++) {
				fmEls[i].onmouseover=function() {
					this.className+=" fmhover";
					
				}
				fmEls[i].onmouseout=function() {
					this.className=this.className.replace(new RegExp(" fmhover\\b"), "");
				}
			}
		}
		if (window.attachEvent) window.attachEvent("onload", fmHover);

