document.observe('dom:loaded', function() {
  var contenidoNota = $('contenido_nota');
  if(contenidoNota) {
    var share = $('share');
    contenidoNota.insert({ top: share.show() });
  }
});

