window.addEvent('domready', function() {
	var req = new Request.HTML({
				url: 'faq/recherche_aide.php',
				method: 'post',
				update: $('result')//instead of calling a html function on Success event
			})
	req.send();
	
	var faq = $$('a.faq');
	faq.each(function(el) {
		var req = new Request.HTML({
			url: el.get('href'),
			method: 'post',
			update: $('result')//instead of calling a html function on Success event
		});//fim do request
		
		el.addEvent('click', function(e) {
			e.stop();
			req.send();
		});
	});
});
