var J = jQuery.noConflict();
J(document).ready(function() {

	J('#ajout').hide();
	J('#detmes').hide();
	J("a").click(function(){
		J('#ajout').show();
		J('#fermer').show();
		});
	
	J("#fermer").click(function(){
		J('#ajout').hide();
		J('#fermer').hide();
	});
	
	J("#affil").click(function(){
		J('#ajout').hide();
		J('#fermer').hide();
	});

	J("a").mouseover(function(){
		if((J(this)).attr('title')=="")return false;
		J('body').append('<span class="infobulle"></span>');
		var bulle=J('.infobulle');
		bulle.append('<img src="'+J(this).attr('title')+'" width=90% height=90%/>');
		var PosTop=J(this).offset().top+J(this).height();
		var PosLeft=J(this).offset().left+J(this).width()/2-bulle.width()/2;
		bulle.css({
			top:PosTop-150,
			left:PosLeft+250,
		})
		
		bulle.animate({
			top:PosTop-45,
			//opacity:0.99
		
		});
		});
		
	J("a").mouseout(function(){
		
		J('.infobulle').remove();
		
		});
	

	
	});


