


	function cherche(inputString) {
		if(inputString.length == 0) {
			// Hide the suggestion box.
			$('#searchResults').hide();
		} else {
		$.post("recherche.php", {queryString: ""+inputString+""}, function(data){
				if(data.length >0) {
					$('#searchResults').show();
					$('#autoResultatList').html(data);
				}
			});
		}
	} 
	
	
$(document).ready(function() {

	$("#homeReferencesContainer img:not('#homeReferencesTitle img')").mouseover(function(e){
		$(this).attr({ src:$(this).attr('src').replace('normal','over')});
	});
	$("#homeReferencesContainer img:not('#homeReferencesTitle img')").mouseout(function(e){
		$(this).attr({ src:$(this).attr('src').replace('over','normal')});
	});
	
	
			
});
	
