/* ================================================================ 
This copyright notice must be untouched at all times.

Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This script and any associated (x)html may be modified in any 
way to fit your requirements.

Please see 'Terms of use' on stunicholls.com
=================================================================== */

var getEls = document.getElementById("nav").getElementsByTagName("LI");

for (var i=0; i<getEls.length; i++) {
	getEls[i].onmouseover=function() {
		turnOff ()
		this.className="hover";
	}
}

function turnOff () {
	var getAgn = document.getElementById("nav").getElementsByTagName("LI");
		for (var x=0; x<getAgn.length; x++) {
		getEls[x].className = "";
		}
}
