// jQueryを事前に読み込んでおくこと。
// 更新履歴
// ver 1.0 フルパス用外部リンクの作成

$(function(){
	//クラス用コンフィグレーション
	var conf = {
		className : 'externalLink'
	};


	//外部サイト(フルパスURL)のリンク調整
	$('a[@href^="http://"]')
		// クリック字のポップアップ処理
		.click(function(){
					window.open(this.href,"_blank");
					return false;
				})
		//conf.className付与
		.addClass(conf.className);
});