jQuery(document).ready(function($) {
	$('#contactForm').submit(function() {
		$('#loader').toggle();			

		$.post(
			'js/ajax/contact.php',
			$(this).serialize(),
			function(response) {
				$('#ajaxMessage').text(response.success);
				$('#loader').toggle();
			},
			'json'
		);
		return false;

	});
	

});
