/*------------------------------------------------------------
 * exlink.js (jQuery.js) Version 0.1
 * 
 *------------------------------------------------------------
 * 特定classをつけた外部リンクを別ウィンドウで開きます。
/*------------------------------------------------------------*/

$(function initExlink() {
	$("a.external").click(function(){
		window.open( $(this).attr("href"), "newwin" );
		return false;
	});	
});
