jQuery(document).ready(function($) {

	searchValue = "Tapez içi votre recherche...";

	$("#s").focus(
		function() {
			if (this.value == searchValue) {
				this.value = "";
			}
		}
	);
	$("#s").blur(
		function() {
			if (this.value == "") {
				this.value = searchValue;
			}
		}
	);
});
