$(document).ready(function() {
 
  // Creating custom :external selector
  $.expr[':'].external = function(obj){
      return !obj.href.match(/^mailto\:/)
              && (obj.hostname != location.hostname);
  };
 
  // Add 'external' CSS class to all external links
  $('a:external').addClass('external');
 
  $('.external').click(function() {
    var link = $(this).attr('href');
 
    $('<div>Usted esta por salir del sitio official de www.ciad.mx y se dirige hacia <br /> '+(link)+' <br /> Esta seguro de de salir ?</div>').dialog({
      title: "Aviso de Salida",
      modal : true,
      overlay: {
        backgroundColor: '#000',
        opacity: 0.5
      },
      buttons: {
        'Continuar': function() {
          $(this).dialog('close').remove();
          window.open(link);
        },
        'Regresar': function() {
          $(this).dialog('close').remove();
          return false;
        }
      }
    });
 
    return false;
  });
});
