jQuery(function() {

	//新規別ウィンドウ開く
	jQuery('a[@href^="http://"], a[@href^="https://"]').not('a[@href^="http://www.anchor.jp/"]').click(function(){
		window.open(this.href, '_blank');
		return false;
	});
	
	//pdf,excel,word、別ウィンドウで開く
	jQuery('a[@href$=".pdf"], a[@href$=".doc"], a[@href$=".xls"]').click(function(){
		window.open(this.href, '_blank');
		return false;
	});
	
});

