function inputFocus(inputValue) {
	if (inputValue == "Rechercher...")
		document.getElementById('inputSearch').value="";
	else if (inputValue == "")
		document.getElementById('inputSearch').value="Rechercher...";
}

function inputHover() {
	document.getElementById('submitSearchBt').style.textDecoration="underline";
	document.getElementById('submitSearchBt').style.background="none";
	document.getElementById('submitSearchBt').style.backgroundColor="#00709C";
}

function inputHoverNone() {
	document.getElementById('submitSearchBt').style.textDecoration="none";
	document.getElementById('submitSearchBt').style.background="transparent url(iso_icons/ixES_search_bg.png) repeat-x";
}

