$(function() {
	// Send the form
		$('#theform').ajaxForm(function() { 
				$('#contactcontent').html("<div id='alldone'></div>");
				$('#alldone').html("<h1>Contact Form Submitted!</h1>")
				.append("<p style='line-height: 130%;'>Many thanks for your email and your interest in InsideOut Media, I will get back to you within the next 24 hours.</p>")
				.hide()
				.fadeIn(1500, function() {
				  $('#alldone');
				});					
		}); 
	});