// hide form if contact has been sent
$(document).ready(function() {
	if ($('#messageSent').length) {
		$('#frm-contact').remove();
		$('#h2-contact').remove();
	} 
})