$("document").ready(function(){
	//Fonction de remplacement du champ recherche : focus
	$("#searchStr").focus(function(){
		if( $(this).val() == "recherche" )
		{
			$(this).val('');
			var style_obj = {
			"color" : "#000"
			}
			$(this).css(style_obj);	
		}
	});
	//Fonction de remplacement du champ recherche : blur
	$("#searchStr").blur(function(){
		if( $(this).val() == "" )
		{
			$(this).val('recherche');
			var style_obj = {
			"color" : "#8f8f8f"
			}
			$(this).css(style_obj);	
		}
	});

});