jQuery(document).ready(function() {
  jQuery("div.right-check > label[for='optin']").parent().css("display", "none");
  jQuery("#cons_email_opt_in:checkbox").parent().parent().css("display", "none");
  jQuery("#donor_email_opt_inname:checkbox").attr('checked', true);
  jQuery(".Don2AppArea #donor_email_opt_in_Row").css("display", "none");
  jQuery(".Don2AppArea #donor_remember_me_Row").css("display", "none");
  
  if(document.getElementById('TicketForm')) {
    jQuery("#s_rememberMe:checkbox").attr('checked', false);
    jQuery("#s_rememberMe:checkbox").parent().parent().css("display", "none");
    jQuery(".AutoOptInWarningMessage").parent().parent().css("display", "none");
  }
  
  if(document.getElementById('Donate') || document.getElementById('TicketForm')) {
    jQuery("#s_rememberMe:checkbox").attr('checked', false);
    jQuery("#DON_EMAIL_OPT_IN:checkbox").attr('checked', true);
    jQuery("#s_rememberMe:checkbox").parent().css("display", "none");
    jQuery("#DON_EMAIL_OPT_IN:checkbox").parent().css("display", "none");
  }
  
  if(document.getElementById('InputForm')) {
    jQuery("#youremailoptin:checkbox").parent().parent().css("display", "none");
  }
});