$(document).ready(function() {
  $('div.accordion > ul').accordion({active: false, collapsible: true, autoHeight: false});
  
  $('form').validateForm({
    requiredLabelPrepend: '<span class="red">*</span>',
    header: "<p>Please Fill Out All Required Information</p>",
    errorFieldText: ''
  });
});