//
// Project  Name: fitpregnancy.com
// File / Folder: /docs/2007/js/ie6.js
// File Language: javascript
// Copyright (C): 2007 The Richard Group, Inc.
// First  Author: Liam Bryan
// First Created: 2007.08.01 11:28:53
// Last Modifier: Liam Bryan
// Last Modified: 2007.08.07 15:06:03

function rgHover() {
	var items = document.getElementById("navigation").getElementsByTagName("li");
	for(var n = 0; n < items.length; ++n) {
		items[n].onmouseover=function() {
			this.className += " ExplorerHover";
		}
		items[n].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" ExplorerHover\\b"),"");
		}
	}
};

if(window.attachEvent) {
	// PC Internet Explorer
	window.attachEvent('onload', rgHover);
}
