$(function(){

	//外部リンクは別ウインドウを設定
	$('a[@href^="http://"]').add('a[@href$=".pdf"]').click(function(){
		window.open(this.href, '_blank');
		return false;
	});

	$('a[@href^="https://"]').click(function(){
		window.open(this.href, '_blank');
		return false;
	});

	//ポップアップウインドウの設定
	/*$('area[@href^="readme.html"]').click(function(){
		window.open(this.href, "popup","width=500,height=600,menubar=no,toolbar=no,scrollbars=yes");
		return false;
	});*/

	
});

