function rechercher_site(){
	var contenu_champ=$('champ_recherche_site').get('value');
	var verif=contenu_champ.replace(' ','');
	if(verif.length<3){
		alert('Veuillez saisir au moins trois caractères pour votre recherche');
	}else{
		
		if($('fil_ariane')){
			$('fil_ariane').destroy();
		}
		if($('second_title')){	
			$('second_title').destroy();
		}
		
		if($('content_detail')){
			$('content_detail').empty();
		}
		
		if($('meteo_yahoo')){
			$('meteo_yahoo').destroy();
		}
		if($('lien_retour_recherche')){
			$('lien_retour_recherche').destroy();
		}

		if($('contenu_carte')){
			$('contenu_carte').destroy();
		}
		$("content_text").setStyle('width','840px');
		myShow='';
		
		chaine_recherche='Recherche : "'+contenu_champ+'"';
		if($('main_title')){
			$('main_title').set('html',chaine_recherche);
		}else{
			var main_title  = new Element("h1", {id: "main_title"});
			main_title.set("html",chaine_recherche);								
			var destination=$("content_text");
			main_title.inject(destination , "top");
		}
		// Recherche AJAX
		var req = new Request({
			url:racine+'recherche-site.htm',
			method:'post',
			autoCancel:true,
			data:'mode=ajax&mots_clef='+contenu_champ,
			onSuccess: function(response) {
				//alert(response);
				$('content_detail').set('html',response);
			}
		}).send();
	}
}
window.addEvent('domready', function(){
	if($('lien_retour_recherche')){
		$('lien_retour_recherche').addEvent('click', function(event){
			event.stop();
			rechercher_site();
			
		});	
	}
	$('form_recherche').addEvent('submit', function(event){
		event.stop();
		//alert('soumission');
		rechercher_site();
		
	});
	$('champ_recherche_site').addEvent('click', function(event){
		$('champ_recherche_site').setStyle('background-color','white');
	});	
	$('bt_ok_recherche').addEvent('click', function(event){
		rechercher_site();
	});
});
