// JavaScript Document

/*
$("#radio1").click(function () {
	
	alert("aaa");
	
	$.ajax({

		type : 'post',
		url  : 'http://www.9air.jp/form/form_op',
		success: function(html){
			
			document.write(html);
			
		}

	});

});

$("#radio2").click(function () {

	$.ajax({

		type : 'post',
		url  : 'http://www.9air.jp/form/form_coming',
		success: function(html){
			
			document.write(html);
			
		}

	});	

							  
});
*/

function changeMenu1() {

	$.ajax({

		type : 'post',
		url  : '/form/form_op',
		async : false,
		success: function(html){
			
			$(".form_result").html(html);
			
		}

	});

}

function changeMenu2() {

	$.ajax({

		type : 'post',
		url  : '/form/form_coming',
		async : false,
		success: function(html){
			
			$(".form_result").html(html);
			
		}

	});

}
