
function send_catalog_request(){
    if(!check_phone()){
        jQuery('#catalog_phone_error').show();
        jQuery('#catalog_info_4').hide();
        return false;
    }else{
        jQuery('#catalog_phone_error').hide();
        jQuery('#catalog_application_sent').show('fast');
        jQuery('#catalog_phone').hide('fast');
        jQuery('#catalog_button').hide('fast');
        jQuery('#catalog_info_4').hide();
        return true;
    }
}
jQuery(document).ready(function() {
    jQuery('#catalog_form').ajaxForm(function() {
        jQuery('#catalog_application_sent').show("fast");
        jQuery('#catalog_phone').hide("fast");
        jQuery('#catalog_button').hide("fast");

    });
});

