window.addEvent('domready', function(){
	$('insc-news').addEvent('click', function(){
		inscription_news($('mail_newsletter').value);
	});	
	
	if($('input_recherche_bout')){
		$('input_recherche_bout').addEvent('keyup', recherche_boutique);	
		$('lancer_recherche_bout').addEvent('click', function(){
			mot_clef = $('input_recherche_bout').value.split(' ');
			rs = mot_clef.join('_');
			window.location.href = 'index.php?page=rs_boutique&rs='+rs;
		});
		$('rs_recherche').addEvent('mouseleave', function(){
			$('rs_recherche').style.display = 'none';
		});
	}
	
	if($('input_recherche_asso')){
		$('lancer_recherche_asso').addEvent('click', function(){
			window.location.href = 'index.php?page=rs_asso&rs='+$('input_recherche_asso').value;
		});
	}
});

function inscription_news(mail){
	var my_req = new Request({
		method: 'post',
		url: 'index.php?action=inscription_newsletter',
		data : {
			'mail' : mail
		},
		onSuccess: function(html) {
			$('popup').style.display = 'block';
			$('popup_contenu_centre').innerHTML = html;
		}
	});
	my_req.send();
}

function recherche_boutique(){ 
	var my_req = new Request({
		method: 'post',
		url: 'index.php?action=recherche_boutique',
		data : {
			'mot_clef' : $('input_recherche_bout').value
		},
		onSuccess: function(html){
			if(html != 'false'){
				$('rs_recherche').style.display = 'block';
				$('rs_recherche').innerHTML = html;
				$$('.resultat').each( function(element){				
					element.addEvent('mouseover', function(){
						element.style.color = '#6bb43d';				
					});
					element.addEvent('mouseout', function(){
						element.style.color = 'black';		
					});
				});
			}else{
				$('rs_recherche').style.display = 'none';				
			}
		}
	});
	my_req.send();	
}

