$(document).ready(function()
{
    $('#contact_form input[@name="ajax"]').val('true');
    $("#contact_form").ajaxForm('#result', after, before);

	function before(formData)
	{ 
		$('#result').html('').append('<img src="/themes/default/images/indicator.gif" />');
		return true;
	}
    
	function after(responseText, statusText)
	{ 
		if (responseText == 'done')
		{
			$("#contact_form #result").html('Thank you for your enquiry, we will be in contact soon.');
			$('#contact_form').each(function() { this.reset(); } );
		}
	}
});