$(document).ready(function(){
	($('a[@href^=".*pdf"]')) | ($('a[@href^="http://"]').not('[@href^="http://test1.rgp.jp/"]'))
	.click(function(){
		window.open(this.href, '_blank');
		return false;
	});
});