var c = {
	
	start: function() {
		c.setupForm();
	},
	
	setupForm: function() {
		$( 'contact_form' ).set( 'send', {
			url: 'ajax.php?mode=AJAX&page=contact',
			method: 'post',
			onSuccess: function( json ){
				var res = JSON.decode( json );
				alert( res.message );
			},
			onFailure: function(){
				alert( 'There was an error and your comment was not sent' );
			}
		} );

		
		$( 'send_enquiry' ).addEvent( 'click', function() {
			$( 'contact_form' ).send();
			return false;
		} );
	}
	
}

window.addEvent( 'domready', c.start );
