function highInfo() {
 
  $button = document.getElementById('submit_contact');
	$button.onmouseover=function() { return (color($button));};
	$button.onclick=function() { return (value($button));};
	$button.onmouseout=function() { return (uncolor($button));};
	}
	
	function color($what) {
	$what.style.backgroundColor='#D5FFD6';
	$what.style.borderLeftColor='#999';
	$what.style.borderTopColor='#999';
	$what.style.borderRightColor='#ccc';
	$what.style.borderBottomColor='#ccc';
	}
	
		function uncolor($what) {
	$what.style.backgroundColor='#E6F2E6';
	$what.style.borderLeftColor='#ccc';
	$what.style.borderTopColor='#ccc';
	$what.style.borderRightColor='#999';
	$what.style.borderBottomColor='#999';
	}
	
	function value($what) {
	$what.value='Please Wait';
	}
	
	
	// if the browser can deal with DOM, call the function onload		
		if(document.getElementById && document.createTextNode)
		{
			window.onload=highInfo;
		}