/*     Global Variables     */





/*     Constructors     */






/*     Arrays     */





/*     Functions     

function init() {

	// set navigation state
	
	if (document.getElementById('listMenu')) {
	
		var aLinkList = document.getElementById('listMenu').getElementsByTagName('LI');
		
		for (var x = 0; x < aLinkList.length; x++) {
		
			if (aLinkList[x].href == window.location.href) {
			
				aLinkList[x].firstChild.hasAttribute ? aLinkList[x].firstChild.setAttribute('class', 'over') : aLinkList[x].firstChild.setAttribute('className', 'over');
							
			}
		}

	
	}*/
	
	function init() {
		listMenu = document.getElementById('listMenu');
		addListener(listMenu, 'mouseover', changeImage, false);

	
	}
	
	function  changeImage(event) {
		
		setEventTargets(event);
		console.log(eTarget.nodeName)
		
		for (var x=0; x < listMenu.childNodes.length; x++){
			if (listMenu.childNodes[x].className){
				listMenu.hasAttribute ? listMenu.childNodes[x].removeAttribute('class') : listMenu.childNodes[x].removeAttribute('className')
			}
			
		}
		
		if (eTarget.nodeName == 'A') {
			
			eTargetParent.setAttribute('class', 'over');
							
		}

		
		
		//obj.className = '';
	
/* 		console.log('hi there. my name is dug'); */
		

	}
