(function($) {
  $.saeta = {
    okText: 'Aceptar',
    cancelText: 'Cancelar',

    confirm: function(title, message, callback) {
      var html = '<div id="dialog" title="' + title + '">';
      html += '<p><span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span>' + message + '</p></div>';

      $("#dialog").remove();
      $("body").after(html);

      $(function() {
        $("#dialog").dialog({
          bgiframe: true,
          resizable: false,
          height: 180,
          modal: true,
          overlay: {
            backgroundColor: '#000',
            opacity: 0.5
          },
          buttons: {
            Aceptar: function() {
              $(this).dialog('close');
              callback();
            },
            Cancelar: function() {
              $(this).dialog('close');
            }
          }
        });
      });

      return false;
    }
  }
  
  jConfirm = function(title, message, callback) {
    $.saeta.confirm(title, message, callback);
  };
})(jQuery);