// JavaScript Document

function inputOver(o) {
	if (o == true)
		document.getElementById('crtSearch2').style.backgroundPosition = 'bottom left';
	else
		document.getElementById('crtSearch2').style.backgroundPosition = 'top left';				
}

function inputFocus(inputValue) {
	if (inputValue == "Rechercher...")
		document.getElementById('inputSearch').value="";
	else if (inputValue == "")
		document.getElementById('inputSearch').value="Rechercher...";
}	