/** 
* ======================================================
* $Workfile:   3-13_scripts.js  $
* $Revision:   1.3  $
* $Date:   Apr 08 2010 07:25:04  $
* $Author:   kumark4  $
* $Archive:   //legal.regn.net/npv/Dev-Archives/Development_Area/archives/LargeLaw/PageDesigner/Phoenix/FrontEnd/Code/LexisNexis/Website/Assets/js/3-13/3-13_scripts.js-arc  $
* ======================================================
* Change History:
* 1.00 initial revision
**/       

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