
/* Affiche une bulle d'aide */
/* necessite jquery */

jq(document).ready(function() {
	jq(".aide img").mouseover(function() {
		jq(this).next().toggle();
	});
	jq(".aide img").mouseout(function() {
		jq(this).next().toggle();
	});	
});
