// JavaScript developed by Red Channel Design - www.redchanneldesign.com
startList=function() {
	if(document.getElementById) {
		navRoot = document.getElementById('menu');
		for(i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if(node.nodeName=='LI') {
				node.onclick=function() {
					if(this.className!='open')
						this.className='open';
					else
						this.className='';
				}
			}
		}
	}
}
window.onload=startList;