/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this script and the associated (x)html
is available at http://www.stunicholls.com/gallery/hover_gallery.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This script and the associated (x)html may be modified in any 
way to fit your requirements.

Please see 'Terms of use' on stunicholls.com
=================================================================== */

onload = function() {
window.defaultStatus='Susan Forste'
/* Level 0 */

	var getEls = document.getElementById('sub0').getElementsByTagName("LI");	
	for (var i=0; i<getEls.length; i++) {
		getEls[i].onmouseover=function() {
		onmouseover (this)
		onmouseout ('sub1')
		}


	}

}
function onmouseover (subs) {
		ulId = subs.id.replace("top", "sub");
		document.getElementById(ulId).className = "click";
		}
function onmouseout (subs) {
			var getListElts = document.getElementById(subs).getElementsByTagName("UL");
			for (var i=0; i<getListElts.length; i++) {
			if (ulId != getListElts[i].id && getListElts[i].className == "click"){
					getListElts[i].className = "none";
				}
			}
			var getListSub = document.getElementById(subs).getElementsByTagName("LI");
			for (var s=0; s<getListSub.length; s++) {
					getListSub[s].className = "";
				}
		}

