// JavaScript Document


function updateResult(num) {
		
	// On met a jour les fiches
	new Ajax.Updater('resultats', 'include/ajax/afficherResultat.php', {
	   method: 'post',
	   parameters: $('recherche').serialize(),
	   asynchronous: false,
	   evalScripts: true,
	   onCreate: function() {
		   
		   $('recherche').setStyle({ backgroundImage: 'url(img/commun/waiting.gif)' });
		   
		   	// On met à jour le menu recherche
			new Ajax.Updater('menu_recherche', 'include/ajax/menuRecherche.php', {
			   method: 'post',
			   parameters: $('recherche').serialize(),
			   asynchronous: false,
			   evalScripts: true
			 });
		   
	   },
	   onComplete: function() {
		   
		 $('recherche').setStyle({ backgroundImage: 'none' });
		   
		 resizePrincipale();
		   
		$$('.pourcentage').each(function(el) {
			var pourcentage = el.down(0).innerHTML.split(' ');
			el.setStyle({ backgroundImage: 'url(img/pourcentages/'+Math.abs(parseInt(pourcentage[1]))+'.png)' });
		});
		
	   }
	 });
		
}
