

function awesomeSearchButton(){
 var button = document.getElementById('searchButton');

 // Remove Go Text
 if(button) {
	 button.value = "";
 
 
 /* Uncomment this block to add rollover functionality. */

 	//Apply base mousout state
	 button.className='searchButton_off';
 
 	//Event Handlers
	 button.onmouseover = function (){this.className='searchButton_on'};
	 button.onmouseout = function (){this.className='searchButton_off'};
 }
 
}
window.onload = awesomeSearchButton;