/**
* homeventilation.co.uk
*/
$(document).ready(function()
{

    if($('#envirovent_contact_form').length > 0)
    {
        /**
        * Setup the contact form
        */
        $('#envirovent_contact_form').submit(function(event)
        {
            event.preventDefault();

            // setup the options
            var options = new Array();

            // set the URL for the proxy and handler
            options['url'] = 'http://www.envirovent.com/form-handler.php';

            // add the unique IDs
            options['form_id'] = 'envirovent_contact_form';
            options['error_id'] = 'envirovent_contact_form_errors';
            options['success_id'] = 'envirovent_contact_form_success';

            // call the contact form submit handler with the options
            ajax_form(options);
        });
    }

    if($('#envirovent_callback_request_form').length > 0)
    {
        /**
        * Setup the contact form
        */
        $('#envirovent_callback_request_form').submit(function(event)
        {
            event.preventDefault();

            if($('#name').val() == '' || $('#telephone').val() == '' || $('#postcode').val() == '' || $('#name').val() == 'Name' || $('#telephone').val() == 'Tel' || $('#postcode').val() == 'Postcode')
            {
                alert('Please enter your name, telephone number and postcode');
            }
            else
            {
                // setup the options
                var options = new Array();

                // set the URL for the proxy and handler
                options['url'] = 'http://www.envirovent.com/form-handler.php';

                // add the unique IDs
                options['form_id'] = 'envirovent_callback_request_form';
                options['error_id'] = 'callback_request_form_errors';
                options['success_id'] = 'callback_request_form_success';

                // call the contact form submit handler with the options
                ajax_form(options);
            }
        });
    }

});


