$(document).ready(function(){

    $(".formMoteurRechercheMotCle input.keywordsInput").focus(function(){
    	if ($(this).attr('clickstatus') != 'on') {
    		$(this).val('');
    		$(this).attr('clickstatus', 'on');
    	}
    });

});

