	window.onload = function() {
    if (!document.getElementsByTagName) {
     return;
    };
    var tbf = document.getElementById('to-be-fixed');
    for (var i = 0; i < tbf.getElementsByTagName('input').length; i++) {
     var inp = tbf.getElementsByTagName('input')[i];
     inp.className = 'be-gone';
     inp.id = 'random-id-' + i;
     var img = document.createElement('img');
     /*img.setAttribute('src', 'img/home/scuole/application_' + inp.getAttribute('value').toLowerCase() + '.png');*/
	 img.setAttribute('src', 'img/banner/cerca.gif');
     img.setAttribute('alt', inp.getAttribute('value'));
     var a = document.createElement('a');
     a.appendChild(img);
     a.setAttribute('title', inp.getAttribute('value'));
     a.setAttribute('href', '#');
     a.associatedControl = 'random-id-' + i;
     a.onclick = function() {
      document.getElementById(this.associatedControl).click();
      return false;
     };
     tbf.appendChild(a);
    };
   };