/*-------------------------------------------------------+
| PHP-Fusion v7 Theme - clanmods.eu Black
| Copyright (C) 2002 - 2008 bLack
| http://www.clanmods.eu/
+--------------------------------------------------------+
| Theme-Name: clanmods_black
| Author: bLack
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/



startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("top-navigation");
		for (i=0; i < navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName == "LI") {
				node.onmouseover = function() {
					this.className += " over";
				}
				node.onmouseout = function() {
						this.className = this.className.replace(" over", "");
				}
			}
		}
	}
}