//addcontact
//まとめて資料請求
$(function(){
	$('#contact_button').click(function(){
		if($('#esid').val()==''){
			var esids='';
			// チェックされているesidを拾ってくる
			$.each($('.seikyu_checkbox'),function(){
				if($(this).attr('checked')==true){
					esids+= $(this).attr('id').match(/[0-9]+$/) + ',';
				}
			});
			// 連結
			esids+='0';
			// hiddenフィールドの値を変更
			$('#esid').val(esids);
		}
		$(this).parents('form').submit();
		return false;
	});
});

