
/* Custom JS */

jQuery(document).ready(function($) {
    
    if($("#sidebar #gform_wrapper_4").length) {
        $("#gform_wrapper_4 input, #gform_wrapper_4 textarea").labelify({ text: "label", labelledClass: "label-highlight" });
        $("#gform_wrapper_4 .validation_message").html('Required');
    }
    
    if($('#gform_3').length) {
        var rows = $('ul#input_3_1 li, ul#input_3_2 li');
        $.each(rows, function(i,e){
            if($(e).children('.gf-custom-description').length)
                $(e).prepend('<a class="toggle">Toggle</a>');
            if(i % 2 == 0) {
                jQuery(e).attr('class','odd');
            } else {
                jQuery(e).attr('class','even');
            }
        });
        
        $('#gform_3 a.toggle').live('click', function(){
            $(this).toggleClass('open');
            $(this).siblings('.gf-custom-description').slideToggle();
        });
        
        $('#field_3_3 .gsection_title').append('<span class="deets">(Documents will be sent to you via email)</span>');
    }
    
});