(function ($) {
  $(document).bind('cbox_complete', function () {
    // Test that we are on one of the redirect pages.
    var link = $('#cboxLoadedContent #redirect-link');
    if (link && link.length) {
      // Get the url to redirect/link to.
      var url = $('.signup-information a').attr('href');
      url = url.split('?')[1].split('&')[0].split('=')[1];

      // Update the link.
      link.attr('href', decodeURIComponent(url.replace(/\+/g, " ")).replace(/&amp;/g, '&'));
    }
  });
})(jQuery);


;

