// JavaScript Document
function inputFocus(inputValue) {
	if (inputValue == "Votre recherche")
		document.getElementById('inputSearch').value="";
	else if (inputValue == "")
		document.getElementById('inputSearch').value="Votre recherche";
}	
