/***************************/
//@Author: Peter Ojiambo
//@website: afexgroup.com
//@email: info@afexgroup.com					
/***************************/

$(document).ready(function(){
	
	// initializing the calendar for the calendar input fields
	$("#arrival_date").datepicker();
	$("#departure_date").datepicker();
	
	// FORM SUBMISSION SCRIPT FOLLOWS
	
	// FORM OPTIONS
	var options = { 
    	target:			'#form',		// target element(s) to be updated with server response 
        beforeSubmit:	showRequest,	// pre-submit callback 
        success:		showResponse	// post-submit callback
 
        // other available options: 
        //url:       url         // override for form's 'action' attribute 
        //type:      type        // 'get' or 'post', override for form's 'method' attribute 
        //dataType:  null        // 'xml', 'script', or 'json' (expected server response type) 
        //clearForm: true        // clear all form fields after successful submit 
        //resetForm: true        // reset the form after successful submit 
 
        // $.ajax options can be used here too, for example: 
        //timeout:   3000 
    };
	
	// bind 'myForm' and provide a simple callback function 
    $('#myForm').ajaxForm(options, function() {
		alert("Thank you for your feedback!"); 
	});
	
});
