
/**
 * Vide la valeur des champs input au focus
 ******************************************/
var EmptySearchInput = function()
{
	var input = $('input.ms-sbplain');
	
	input.each( function()
	{
	    $(this).attr('value', 'Rechercher');
		$(this).focus( function() {if(this.value == 'Rechercher') this.value='';});	
		$(this).blur( function() {if(this.value == '') this.value='Rechercher';});
	});
};