// JavaScript for the questionnaire

if (Common.jquery_supported) {
    $(function() {
        // Add validation to the questionnaire; note that this doesn't
        // work properly if you call it on a selector that matches more than
        // one element
        $("#f_questionnaire").validate();
    });
}
