 AfficherInfoBulle = function(e)
	{
	  var text = $(this).next('.info-bulle-contenu');
	  if (text.attr('class') != 'info-bulle-contenu')
		return false;

	  text.fadeIn()
		.css('top', 35)
		.css('right', 0);

	  return false;
	}
	CacherInfoBulle = function(e)
	{
	  var text = $(this).next('.info-bulle-contenu');
	  if (text.attr('class') != 'info-bulle-contenu')
		return false;

	  text.fadeOut();
	}

	InstallationInfoBulle = function()
	{
	  $('.info-bulle-css')
		.each(function(){
		  $(this)
			.after($('<div/>')
			  .attr('class', 'info-bulle-contenu')
			  .html('<div class="info-bulle-contenu2">' +$(this).attr('title')+ '</div>'))
			.attr('title', $(this).attr('title'));
		})
		.hover(AfficherInfoBulle, CacherInfoBulle);
	}

	$(document).ready(function() {
	  InstallationInfoBulle();
	});
