
if(window.attachEvent)
  window.attachEvent("onload",gb_setListeners);

function gb_setListeners(){
  inputList = document.getElementsByTagName("INPUT");
  for(i=0;i<inputList.length;i++){
    inputList[i].attachEvent("onpropertychange",gb_fixTitles);
  }
  selectList = document.getElementsByTagName("SELECT");
  for(i=0;i<selectList.length;i++){
    selectList[i].attachEvent("onpropertychange",gb_fixTitles);
  }
  taList = document.getElementsByTagName("TEXTAREA");
  for(i=0;i<taList.length;i++){
    taList[i].attachEvent("onpropertychange",gb_fixTitles);
  }
}

function gb_fixTitles(){
  if (event.srcElement.title.indexOf("Google Toolbar") > 0){
  	event.srcElement.style.backgroundColor = "";
    event.srcElement.title = "";
  }
  if (event.srcElement.style.backgroundColor == "#ffffa0"){
  	event.srcElement.style.backgroundColor = "";
  }
}