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