startList = function() {
	/*if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menu");
		displayRoot = document.getElementById("display_block");
		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", "");   }
			}			
		}
		
	}*/
	select_input();
}
function changeImage(inputSrc){
    document.getElementById('myImage').style.display='inline';
    document.getElementById('myImage').src=inputSrc;
}	

function select_input(){
	var fields = document.body.getElementsByTagName("INPUT");
	for(i=0; i < fields.length; i++){		
			fields[i].onfocus = highlightOn;
			fields[i].onblur = highlightOff;		
	}
	var fields = document.body.getElementsByTagName("TEXTAREA");
	for(i=0; i < fields.length; i++){		
			fields[i].onfocus = highlightOn;
			fields[i].onblur = highlightOff;		
	}
	var fields = document.body.getElementsByTagName("SELECT");
	for(i=0; i < fields.length; i++){		
			fields[i].onfocus = highlightOn;
			fields[i].onblur = highlightOff;		
	}
}
function highlightOn() {	
	this.style.backgroundColor = '#D7EFFF';
	//this.style.border = '1px solid #E7E7E7';
}	
function highlightOff() {	
	this.style.backgroundColor = '#FFFFFF';
	//this.style.border = '1px solid #E7E7E7';
}
