$(document).ready(function() {
	
	$("#contact_wrapper").css("margin-top", "-230px");
	
	var status = 'up';
	
	$("#contact_button").toggle(function() {
		
		$("#contact_wrapper").animate({ marginTop: "0px" }, 1200);
		
		return false;

}, function() {
		
			$("#contact_wrapper").animate({ marginTop: "-230px" }, 1200);

			return false;
			
	});
	
	$("#contact_slide2").hide();
	
	$("#with_msg").click(function() {
		
		$("#contact_slide1").hide();
		
		$("#contact_slide2").fadeIn("slow");
		
	});
	
	$("#without_msg").click(function() {
		
		var name = $("#name_js").val();
		var phone = $("#phone_js").val();
		var email = $("#email_js").val();
		var type = 'General Contact';
		
		$("#contact_slide1").hide();
		
		$.post("/contentcreator/ajax_accept_contact", { name: name, phone: phone, email: email, type: type }, function(msg) {
			
			$("#contact_result").html(msg);
			
		});
		
	});
	
	$("#with_msg_final").click(function() {
		
		var name = $("#name_js").val();
		var phone = $("#phone_js").val();
		var email = $("#email_js").val();
		var message = $("#message_js").val();
		var type = 'General Contact';
		
		$("#contact_slide2").hide();
		
		$.post("/contentcreator/ajax_accept_contact", { name: name, phone: phone, email: email, message: message, type: type }, function(msg) {
			
			$("#contact_result").html(msg);
			
		});
		
	});
	
});