function awesomeSearchButton(){
 var button = document.getElementById('searchButton');
 // Remove Go Text
 if(button)
	 button.value = "";
 
 /* Comment out this block to remove 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;

