var jsHover = function() {
	buildMenu();
	
	/* ===== Originally targeted the UL with the corresponding ID =====
	   ===== Then attached the jshover to each LI				  =====
	   var sfEls = document.getElementById("main_menu").getElementsByTagName("LI");
	   
	   ===== Now targets the DIV holding the UL			=====
	   ===== Targets the second UL and each of its LI's =====
	   
	   >>>>> Use this to test the item's ID <<<<<
	   alert(eleCollection_UL[1].id);
	*/
	var eleCollection_UL = document.getElementById("menu").getElementsByTagName("UL");
	var jsEls = eleCollection_UL[1].getElementsByTagName("LI");
	
	for (var i=0; i<jsEls.length; i++) {
		jsEls[i].onmouseover=function() {
			this.className+=" jshover";
		}
		jsEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" jshover\\b"), "");
		}
	}
}

/* ===== For IE only ===== */
if (window.attachEvent)
{window.attachEvent("onload", jsHover);}