$(function(){


	$('#btn_submit').removeAttr("disabled");
	$('#btn_submit').click(function(){
		$(this).attr("disabled", "disabled");
		post_contact();
	});
});
function post_contact(){

	djodjo.request({
		params: {
			"name":$(":input[name='c_name']").val(),
			"email":$(":input[name='c_email']").val(),
			"body":$(":input[name='c_body']").val()
		},
		url: "contact.cgi",
		error:function(data){},
		success: function (data) {
			$('#contents-inner').empty();
			$('#contents-inner').append("<h3>お問い合わせいただきありがとうございました。</h3>");
			$('#contents-inner').append("<a href='http://www.hirota-oboe.com'>http://www.hirota-oboe.com</a>");
		
		},
		complete: function(){
			$('#btn_submit').removeAttr("disabled");
		}
	});
}