function rechch_focus(id){

 if(document.getElementById(id).value=='Une recette, un ingrédient...')
  document.getElementById(id).value='';

}

function rechch_blur(id){

 if(document.getElementById(id).value=='')
  document.getElementById(id).value='Une recette, un ingrédient...';

}
