// change input styles for ie 6

function getInputs() { 
   var inputs = document.getElementsByTagName('input');
   for (var i=0; i<inputs.length; i++) {
   	textInput = inputs[i];
   if(textInput.getAttribute('type') == 'text' && textInput.id != 'queryString'){
   	textInput.className = 'ieinput' + textInput.className;
   	textInput.onmouseout=function(){this.className= 'ieinput' + textInput.className;}
   	textInput.onmouseover=function(){this.className= 'ieinput_hover' + textInput.className;}
   }
   }
}