/*
 * 使用効果：
 *
 * 外部リンク (http://を含む URI) はブランクで表示
 * ただし、自サイト内 (http://www.kato を含む URI) は同一ウィンドウで表示
 *
 * ND&amp;I
 */

$(function(){
					 					 
	$('a[@href^="http://"]').not('[@href^="http://www.kato"]').not('[@href^="http://122.1.221.10/"]').click(function() {
		window.open(this.href, '_blank');
		return false;
	});
	//外部リンクはブランクで表示
	$('a[@href$=".pdf"]').click(function(){
		window.open(this.href, '_blank');
		return false;
	});
	//PDFファイルもブランクで表示
	
});
