$(document).ready(function() {
    
    /* Training Registration Form*/
    if( $('.ddfmwrap').length > 0 ) {
        $('#fm_shipping_same').click(function() {
            if( $(this).is(':checked') ) {
                $('#fm_shipping_street').val( $('#fm_billing_street').val() );
                $('#fm_shipping_city').val( $('#fm_billing_city').val() );
                $('#fm_shipping_state').val( $('#fm_billing_state').val() );
                $('#fm_shipping_zip').val( $('#fm_billing_zip').val() );
                $('#fm_shipping_country').val( $('#fm_country').val() );
            };
        });
        $('#pt_credit_card').click(function() {
            if( $(this).is(':checked') ) {
                $('div.check_checkshow').hide();
                $('div.cc_checkshow').show();
                $('div.cc_checkshow .valuecontrol :input').val('');
                $('div.cc_checkshow .valuecontrol .textfieldValidState').each(function(){
                    $(this).removeClass('textfieldValidState').addClass('textfieldRequiredState');
                });
            };
        });
        $('#pt_check').click(function() {
            if( $(this).is(':checked') ) {
                $('div.check_checkshow').show();
                $('div.cc_checkshow').hide();
                $('div.cc_checkshow .valuecontrol :input').val('0');
            };
        });
        $('#fm_add_data').click(function() {
            if( $(this).is(':checked') ) {
                $('div.listing_checkshow').hide();
                $('div.listing_checkshow :input').val('0');
            } else {
                $('div.listing_checkshow').show();
                $('div.listing_checkshow :input').val('');
            };
        });
        $('#fm_training_cost').blur(function(){
            var cost = $(this).val();
            $('.ap-cost').text( cost );
        });
        $('#ap-listing-address').click(function(){
            if( $(this).is(':checked') ) {
                $('#fm_business_street').val( $('#fm_billing_street').val() );
                $('#fm_business_city').val( $('#fm_billing_city').val() );
                $('#fm_business_state').val( $('#fm_billing_state').val() );
                $('#fm_business_zip').val( $('#fm_billing_zip').val() );
                $('#fm_business_country').val( $('#fm_country').val() );
            };
        });
        function checkform() {
            
        }
        $('.submit input').click(function(){
            c = setTimeout(function(){
                invalidTextAreas = $('.textareaRequiredState');
                invalidTextFields = $('.textfieldRequiredState');
                invalidRadios = $('.radioRequiredState');
                if( invalidRadios.length > 0 || invalidTextAreas.length > 0 || invalidTextFields.length > 0 ){
                    $('.formErrorsMessage').fadeIn('fast');
                } else $('.formErrorsMessage').hide();
                clearTimeout( c );
            }, 100);
        });
    }
});
