// JavaScript Document
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		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", "");
				}
			}
		}
	}
}
window.onload=startList;


//window.addEvent('domready', function() {
//	var el2 = $('two');	
//	$('about').addEvent('mouseover', function(e) {
//		// You often will need to stop propagation of the event
//		e.stop();
//		el2.fade(1);
//	});	
//	$('two').addEvent('mouseout', function(e) {
//		// You often will need to stop propagation of the event
//		e.stop();
//		el2.fade(0);
//	});	
//	var el3 = $('three');	
//	$('news').addEvent('click', function(e) {
//		// You often will need to stop propagation of the event
//		e.stop();
//		el3.fade(1);
//	});
//});