jQuery(document).ready(function() {
  jQuery("#survey-questions :checkbox").attr('checked', true);
  
  jQuery("#survey-questions tr").each(function (i) {
    explicitElement = jQuery("[class*='Explicit']", this);
    labelElement = jQuery("label[class*='wrapable']", this);
    
    if (explicitElement.html() && labelElement.html()) {
      labelElement.get(0).innerHTML = explicitElement.html();
      explicitElement.remove();
    }
  });
  
});