$(document).ready(function() {
	jQuery("#contactform").validate({
			submitHandler: function(form) {
				jQuery(form).ajaxSubmit(function() {
					$('#contactform').html("<div id='sucmessage'></div>");
					$('#sucmessage').html("<h2>Thank you. Your form has been submitted successfully.</h2>")
					.fadeIn(1000, function() {
					});
				});
			}
		});
	});



