function recherche_init(){
	$('#rechercheTextBox').click(function(){ 
		if($('#rechercheTextBox').attr('value') == $('#input_recherche').text()){ 
			$('#rechercheTextBox').attr('value', ''); 
			$('#rechercheTextBox').css('color','#333');
		}
	});
	
	$('#rechercheTextBox').focusout(function(){ 
		if($('#rechercheTextBox').attr('value') == ""){
			$('#rechercheTextBox').attr('value', $('#input_recherche').text()); 
			$('#rechercheTextBox').css('color','#999');
		}
	});	
	
	$('#recherche .select').click(function(){
		if(customSelect.getSelectedIndex('rechercheOptions')==2){
			$('#rechercheOptions .titleBg .title').text($('#titleBg_title0').text()); 
			$('#rechercheTextBox').attr('value', $('#input_recherche').text()); 
			$('#rechercheTextBox').css('color','#999');
			$('#rechercheTextBox').blur();
		}else{
			$('#rechercheOptions .titleBg .title').text($('#titleBg_title' + customSelect.getSelectedIndex('rechercheOptions')).text()); 
		}
	});
		
	$('#rechercheTextBox').focusin(function(){ 
		$('#rechercheTextBox').css('color','#333');
		$('#rechercheTextBox').attr('value','');
	});
	
	$('#rechercheTextBox').keyup(function(e){ if (e.keyCode == 13) recherche($(this));	});		
	$('#Rechercheloupe').click(function(){recherche($(this));});
	
	function recherche(obj){
		$('#rechercheTextBox').attr('value', jQuery.trim($('#rechercheTextBox').attr('value')));
		var n = customSelect.getSelectedIndex('rechercheOptions');
		if( n == 1 ){  				
			$('#rechercheTextBox').attr('data-adresse', $('#rechercheTextBox').attr('value'));
			$('#rechercheGoogleMap').attr('value', $('#rechercheTextBox').attr('value'));
			plan_ville.openMap($('#rechercheTextBox'), -1);
		}
		if (n == 0 || n == -1){
			document.location.href='/search/search.asp?q1=' + $('#rechercheTextBox').attr('value') + '&su=ls&DocID=9';			
		}

	}
}
