function contactForm(){
	jQuery("#ebook-form").validate({
		errorPlacement: function(error, element) {
			jQuery(element).addClass('error');
		}
		,submitHandler: function() {
			jQuery('#loading-bar').fadeOut('fast');
					jQuery('#form-fields').fadeTo('slow', 0.3);
					jQuery("#contact-result").html("<p>Thank you! Your request has been sent.</p>");	
					jQuery("#contact-result").fadeIn('slow');
			jQuery('#ebook-form').ajaxSubmit({
				dataType: 'json',
				type: 'post',
				success : function(result){
					
				}
			});
		}
		}
		);			
}
