$(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 oficial de www.ciad.mx y se dirige a: <br /> '+(link)+' <br/> Esta seguro de salir?</div>').dialog({

      title: "Aviso de Salida",

      modal : true,

      overlay: {

        backgroundColor: '#000',

        opacity: 0.5

      },

      buttons: {

        'Continuar': function() {

          $(this).dialog('Regresar').remove();

          window.open(link);

        },

        'Cancelar': function() {

          $(this).dialog('close').remove();

          return false;

        }

      }

    });


    return false;

  });

});

