// JavaScript Document

jQuery(document).ready( function () {
	$('a[@href^="http"]').not('[@href*="www.taisho.co.jp"]').click(function(){
	window.open(this.href, '');
	return false;
	});
});


