(function($){

	$(".info-bulle").live("mouseover mouseout", function(event){
		if(event.type == "mouseover"){
			var txt = $(this).find('span').html();
			$('.bulle').clone()
				.appendTo($(this))
				.find('.bulle-content').html(txt);
			$(this).find('.bulle')
				.css('top', -($(this).find('.bulle').innerHeight()))
				//.css('left', -($(this).find('.bulle').width() + $(this).width()/2 ))
				.css('display', 'none')
				.fadeIn(300);
		
		} else {
			$(this).find('.bulle').remove();
		}
	});

})(jQuery);