
$(document).ready(function() { 
    var options = { 
       // target:'#inner_content',   // target element(s) to be updated with server response 
			beforeSubmit: showRequest,
			success:       showResponse  // post-submit callback 
				
    }; 
    $('#hif').ajaxForm(options); 
});

function showResponse(responseText, statusText)  { 

    // for normal html responses, the first argument to the success callback 
    // is the XMLHttpRequest object's responseText property 
 
    // if the ajaxForm method was passed an Options Object with the dataType 
    // property set to 'xml' then the first argument to the success callback 
    // is the XMLHttpRequest object's responseXML property 
 
    // if the ajaxForm method was passed an Options Object with the dataType 
    // property set to 'json' then the first argument to the success callback 
    // is the json data object returned by the server 
 

				$('#con').text('Congratulations!');
				$('#response_text').html(responseText);
				$('#error_box').remove();
				$('#contact').remove();
} 

function showRequest(formData, jqForm, options) { 

		if(do_submit)
		{
    return true; 
		}
		$('#error_box').remove();
		return false;
}

