﻿/** 
* ======================================================
* $Workfile:   3-5_scripts.js  $
* $Revision:   1.3  $
* $Date:   Jun 22 2010 15:28:20  $
* $Author:   goddarmx  $
* $Archive:   //legal.regn.net/npv/Dev-Archives/Development_Area/archives/LargeLaw/PageDesigner/Phoenix/FrontEnd/Code/LexisNexis/Website/Assets/js/3-5/3-5_scripts.js-arc  $
* ======================================================
* Change History:
* 1.00 initial revision
**/       

//  create resuable short name for jQuery no conflict
var $j = jQuery.noConflict();

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);

$j(document).ready(function () {

});
