//manage search box text
$(document).ready(function(){	
	$("#searchbox").focus(function(){
		if($(this).attr("value") == "Recherche...") $(this).attr("value", "");
	});
	$("#searchbox").blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", "Recherche...");
	});
});