/*-------------------------------------------#
# *Briefings* - Licensed under the EUPL v1.0 #
# http://ec.europa.eu/idabc/en/document/7330 #
#-------------------------------------------*/
/*
Module js pour le modèle Spip xx_bulle.html
*/
$(document).ready(function() {
  $('.xx_bulle').
    mouseenter(function() {
      var obj=$(this).next();
      var offset=$(this).offset();
      $('body').append(
        $('<div><\/div>').
        css({
          position:'absolute',top:offset.top,left:offset.left,
          paddingTop:$(this).outerHeight(),minWidth:$(this).outerWidth(),
          paddingLeft:'1em'
        }).
        mouseleave(function() {$(this).remove();}).
        append(
          $('<div>'+obj.text()+'<\/div>').
          css({backgroundColor:'#eaeaea',padding:'.5em',outline:'1px outset'}).
          addClass(obj.attr('class'))
        )
      );
  });
});

