$(function(){

	$('#change-form')
	   .jqTransform()
	   .validate({
         submitHandler: function(form) {
           $(form).ajaxSubmit({
                success: function() {
                    $('#page-content').hide();
                    $('#thanksappend').append("<h2 id='thanks'>Thank You</h2><hr /><p><em class='intro'>Your message has been sent.</em></p><h3>We'll Be In Touch</h3><p>Thank you for contacting us about your organization's specialized program needs. We will reply via email or the telephone number you provided soon; usually within 48 hours. We look forward to working with you to provide the best experience possible, and hope you're having a great day!</p><p><em class='author'>~Pine Mountain Adventures Staff</em></p>")
                }
           });
         }
        }); 
        
    $("#addURLSArea").hide();
        

    $('.jqTransformCheckbox').click(function(){
        if ($('#multCheck:checked').val() == 'on') {
            $("#addURLSArea").slideDown();
        } else {
            $("#addURLSArea").slideUp();
        }
    });  
    
    $(".jqTransformRadio").click(function() {
        if ($(".jqTransformRadio").eq(1).attr("class") == "jqTransformRadio jqTransformChecked") {
            $("#curTextArea").slideUp();
        } else {
            $("#curTextArea").slideDown();
        }
    });
	
});