﻿$(document).ready(function () {
    $('textarea').autoResize({
        animateDuration: 200,
        extraSpace: 30
    });

    $('.optionalFields').hide();
    $('.optionalLink').show();

    // Optional Fields toggle
    $('a.fieldgroupToggle').click(function () {
        $('.optionalFields').toggle("fast");
        if ($('a.fieldgroupToggle').hasClass("arrowDown")) {
            $('a.fieldgroupToggle').removeClass("arrowDown").addClass("arrowUp");
        } else {
            $('a.fieldgroupToggle').removeClass("arrowUp").addClass("arrowDown");
        }

        return false;
    });

    // Hide the checkboxes and show remove icons instead
    $('div.contactUsForm fieldset.fieldset-right input').hide();
    $('div.contactUsForm fieldset.fieldset-right img.removeLink').show().click(function () {
        checkboxId = this.id.substring(7);
        if ($('#' + checkboxId)) {
            $('#' + checkboxId).remove(); // Remove the element from the DOM entirely (this leaves the hidden 'false' field behind)

            if ($('#p_' + checkboxId)) {
                $('#p_' + checkboxId).hide("slow");
            }
        }
    });
});
