//
// リセット・Ajaxライブラリ（電話番号）
// 
// @auther	yamazaki@re-set.ne.jp(2008.06)
// @version 1.0.0
//

$(function()
{
	$("#tel").change(function(){
		$.getJSON("/ajax/tel",{tel:$("#tel").val()}, function(data){
		  if(data.msg){
		  	$('#disptel').html(data.msg);
		  }else{
		  	$('#disptel').html("");
		  }
		  $('#tel').val(data.tel);
		});
	});
});

