/*---------------------------------------------------------------------
JS Script for new site ver 1.1
DATE: 7/7/2008
AUTHOR: CLC
NOTES: removed extra toggle script, fixed IE 6 script
---------------------------------------------------------------------*/
/*---------------------------------------------------------------------
IE 6 fix for pulldown menus and banner div
---------------------------------------------------------------------*/
startList = function() {
	var ver=navigator.appVersion;
	var exp=/MSIE 6.0/
	
	if (exp.exec(ver)!=null){
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("navlist");
			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", "");
					}
				}
			}
		}		
	
		if (document.all&&document.getElementById) {
			bannerRoot = document.getElementById("banner");
			bannerRoot.style.height=4+"em";
		}
	}		
}
/*window.onload=startList;*/

/*---------------------------------------------------------------------
MOO tools pull down menu
---------------------------------------------------------------------*/
//Version for MOO 1.11
/*		window.addEvent('domready', function(){
					
			var evntfindit = new Fx.Slide('findit');
			
			evntfindit.hide();
			
			$('toggleevntfindit').addEvent('click', function(e){
				e = new Event(e);
				evntfindit.toggle();
				e.stop();
			});							
		});*/
			
//Lastest Version MOO		
window.addEvent('domready', function() {
	var evntfindit = new Fx.Slide('findit');
	evntfindit.hide();
	$('toggleevntfindit').addEvent('click', function(e){
		evntfindit.toggle();
		e.stop();
	});
});   
			
/*---------------------------------------------------------------------
END
---------------------------------------------------------------------*/