// JavaScript Document
jQuery(document).ready(function() {
    
  var splash = jQuery.cookie('DontAnnoyMe');
  var wet = jQuery.cookie('NoReallyDont');
  if (wet == 'yes' || splash == 'yes') {   } 
  else {
      tb_show("","http://www.redcross.org/email/splash/splash.html?KeepThis=true&TB_iframe=true&height=388&width=571", "");
      jQuery.cookie('DontAnnoyMe', 'yes', { expires: 1, domain: '.redcross.org', path: '/' });
  }

});