$(function() {
	//価格表
	$('.popup01').click(function(e) {
		window.open(this.href, '_blank', 'width=820, height=600, menubar=no, toolbar=no, scrollbars=yes');
		e.preventDefault();
		return false;
	});
	//プレミアムクラブ
	$('.popup02').click(function(e) {
		window.open(this.href, '_blank', 'width=820, height=600, menubar=no, toolbar=no, scrollbars=yes');
		e.preventDefault();
		return false;
	});
	//工場地図
	$('.popup03').click(function(e) {
		var popup = window.open(this.href, 'map', 'width=450, height=660, menubar=no, toolbar=no, scrollbars=yes');
		popup.focus();
		e.preventDefault();
		return false;
	});
	//悪徳商法
	$('.popup04').click(function(e) {
		var popup = window.open(this.href, 'map', 'width=600, height=430, menubar=no, toolbar=no, scrollbars=yes');
		popup.focus();
		e.preventDefault();
		return false;
	});
	//不審な電話や悪質商法
	$('.popup05').click(function(e) {
		var popup = window.open(this.href, 'map', 'width=620, height=530, menubar=no, toolbar=no, scrollbars=yes');
		popup.focus();
		e.preventDefault();
		return false;
	});
	//カタログリスト
	$('.popup06').click(function(e) {
		var popup = window.open(this.href, 'map', 'width=630, height=430, menubar=no, toolbar=no, scrollbars=yes');
		popup.focus();
		e.preventDefault();
		return false;
	});

});
