
window.onload=function()  {

  if (document.getElementById("q")) {
    var searchinput = document.getElementById("q");
    searchinput.onfocus = function() { this.value = ""; }
  }
  
}
