// JavaScript Document
$(document).ready(function() {

	// Hide the status (DIV) and ajax loader (GIF)
	$('#loading').hide();
	$('#status').hide();
	
	// Hide #main-send animation
	$('#sending').hide();
	
	var options = {
		target: '#status',
		url: 'quick-form.php',
		clearForm: true,
		beforeSubmit: function() {
			$('#loading').fadeIn(50);
			},
		success: function() {
			$('#loading').fadeOut(300);
			$('#status').fadeIn(200).fadeIn(200).animate({opacity: 1}, 3000).fadeOut(1000);
			}
		} // End of Options	
	
	$('#contact-form').ajaxForm(options); // End of form submit	
});
