/*****************************
 * (c)ウェブシステムズ
 * http://www.websystems.jp/
 *****************************/

$(function()
{
	//まとめて問合せチェックボックス
	$('#adjust_inq input[@type="checkbox"]').each(function(){
		$(this).change(function(){
			var checked = $(this).attr('checked');
			var lb = $(this).attr('name').split('[]').shift();
			var flg = 0;
			if(checked){
				flg = 1;
			}
			var seq = $(this).attr('id').split('_').pop();

			var data = "action=setInq&seq_no="+seq+"&flg="+flg+"&pat=1&lb="+lb;
			$.ajax({
				type: "GET",
				url: "./",
				data: data,
				dataType: "text"
				//success: function(res){ alert(res);}
			});
		});
	});
});

