$(document).ready( function () { 
 
 	// formulaire de recherche
	$("form#form_recherche input#recherche").focus( function () {
		if ($("form#form_recherche input#recherche").val()=="Rechercher sur le site") {
			$("form#form_recherche input#recherche").val("");
		}
	});
} ) ; 
