window.onload = function(){

  // RICERCA
  var elq = document.getElementById('q');

  if (elq){
    function asearchSetTip(clean){
      if (typeof clean == "undefined")
        clean = false;

      var tip = 'Cerca nel sito...';
      var tip_current = elq.value;

      if (clean && tip_current == tip){
        elq.value = '';
        elq.style.color = '#000';
      } else if (tip_current == ''){
        elq.value = tip;
        elq.style.color = '#aaa';
      }
    }

    asearchSetTip();

    elq.onblur = function(){asearchSetTip()}
    elq.onfocus = function(){asearchSetTip(true)}

    document.getElementById('search').onsubmit = function(){
      asearchSetTip(true);
    };
  }
}
