/*
 * yuga.js 0.3.0 - 優雅なWeb制作のためのJS
 *
 * Copyright (c) 2007 Kyosuke Nakamura (kyosuke.jp)
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * Since:     2006-10-30
 * Modified:  2007-06-18
 *
 * jQuery 1.1.2
 * ThickBox 3
 * Interface 1.2 (Effects scroll)
 */

$(function(){
	
	//外部リンクは別ウインドウを設定
	$('a[@rel="nofollow"]').click(function(){
		window.open(this.href, '_blank');
		return false;
	}).addClass('externalLink');


});