function ieHoverLinks () {
	if (document.all) {
		$$("#resultats li").each(function(p) {
			p.onmouseover=function() {
				Element.addClassName(this,'ieHover');
			}
			p.onmouseout=function() {
				Element.removeClassName(this,'ieHover');
			}
		});
	}
}

window.onload = function() {
	if($('recherche_avancee')) {
		$('zonegeo_id').observe('change',function(e) {
			$('spinner_select_pays').show();
				new Ajax.Updater(
					$('pays_id'), 
					'ajax/change_select_pays.php', 
					{
						method: 'post', 
						parameters: 'zonegeo_id='+$F('zonegeo_id'),
						onComplete: function(e){
							$('spinner_select_pays').hide();
						},
						asynchronous: true
					}
				);	
		});
	}
	if($('modifier_recherche')) {
		$('modifier_recherche').observe('click',function(e) {
			Event.stop(e);
			$('form_avancee').toggle();
		});
	}
	
}