﻿/*
 * yuga.js 0.6.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:  2008-05-09
 *
 * jQuery 1.2.3
 * ThickBox 3.1
 */

(function($) {

	$(function() {
		$.yuga.externalLink();
	});

	//---------------------------------------------------------------------

	$.yuga = {
		//外部リンクは別ウインドウを設定
		externalLink: function(options) {
			var c = $.extend({
				windowOpen:true,
				externalClass: 'externalLink'
			}, options);
			var e = $('a.pop');
			if (c.windowOpen) {
				e.click(function(){
					window.open(this.href, '_blank');
					return false;
				});
			}
			e.addClass(c.externalClass);
		}
	};
})(jQuery);
