AfficherInfoBulle = function(e)
{
  var text = jQuery(this).next('.info-bulle-contenu');
  if (text.attr('class') != 'info-bulle-contenu')
	return false;

  text.fadeIn()
	.css('top', e.pageY)
	.css('left', e.pageX+30);

  return false;
}
CacherInfoBulle = function(e)
{
  var text = jQuery(this).next('.info-bulle-contenu');
  if (text.attr('class') != 'info-bulle-contenu')
	return false;

  text.fadeOut();
}

InstallationInfoBulle = function()
{
  jQuery('.info-bulle-css')
	.each(function(){
	  jQuery(this)
		.after(jQuery('<span/>')
		  .attr('class', 'info-bulle-contenu')
		  .html(jQuery(this).attr('title')))
		.attr('title', '');
	})
	.hover(AfficherInfoBulle, CacherInfoBulle);
}
