$().ready(function() {

   var pattern =/http\:\/\/(www|).+?\.(com|net|gov|us|biz|info|org|me|mobi|us|biz|mx|ca|uk|ws|ag|co|jobs)/gi;
   var excludes = new Array();
   excludes[0] = 'https://www.myaccountaccess.com/onlineCard/login.do';
   excludes[1] = 'https://www.cusa-hfs.com/hfs/svc/independentfcu';

   $('a').each(function(){


       if ($(this).attr('href').match(pattern))
       {
            var runmodal = true;

            for(var i=0;i<excludes.length;i++)
            {
                if ($(this).attr('href') == excludes[i])
                   runmodal = false;
            }             
               
            if(runmodal)
            {
               var href = $(this).attr('href');
               $(this).addClass('triggerModal');
               $(this).attr('href', 'index.php?src=gendocs&ref=ModalWindow');
               $(this).attr('rel', href);
            }
       }
       
   });

});