// JavaScript Document//Search Button Rollover Code (http://www.elated.com/articles/rollover-buttons-with-javascript)if ( document.images ){  eg_on = new Image ( );  eg_off = new Image ( );  eg_on.src = "images/searchButtonOver.jpg";  eg_off.src = "images/searchButton.jpg";}function button_on ( imgId ){  if ( document.images )  {    butOn = eval ( imgId + "_on.src" );    document.getElementById(imgId).src = butOn;  }}function button_off ( imgId ){  if ( document.images )  {    butOff = eval ( imgId + "_off.src" );    document.getElementById(imgId).src = butOff;  }}