$().ready(function() {

   var pattern =/http(|s)\:\/\/(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://ntmc.webcu.org/cgi-bin/mcw170.cgi';
   excludes[1] = 'https://www.businessbillpay-e.com/v2/login.aspx?instid=39918';
   excludes[2] = 'https://cucc.fdecs.com/eCustService/'; 

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

   if ($(this).attr('href') !== undefined)
   {
      if ($(this).attr('href').match(pattern) || $(this).attr('href') == 'fba/budgetsmart/31/' || $(this).attr('href') == 'fba/turbotax/46/')
       {
            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);
       }
       }
       }
   });
});
