/*
読み込み
---------------------------------------------*/
/* 基本設定 */
document.write('<script src="/common/js/style.js"></script>'); 



/*
画像
---------------------------------------------*/
var images = {
		// 画像とジャンプ先の URL のペア
		url : [
				['コンフリフト・マネジメント', '/common/images/banner/conflict.jpg', 'http://www.quonb.jp/individual/theme/management_medical.html'],
				['失敗学と創造学', '/common/images/banner/souzougaku.jpg', 'http://www.quonb.jp/seminar/detail.php?n=0072'],
				['ファシリテーション', '/common/images/banner/facilitation.jpg', 'http://www.quonb.jp/individual/theme/facilitation.html'],
				['Online English', '/common/images/banner/online_e.jpg', 'http://www.w-int.jp/oe/'],
				['Active English', '/common/images/banner/active_e.jpg', 'http://www.w-int.jp/gogaku/extension/ae/'],
				['TOEFL講座', '/common/images/banner/toefl.jpg', 'http://www.w-int.jp/toefl/']
				],

		// 順番のシャッフル
		shuffle : function() {
				for (i = this.url.length; i > 0; --i) {
						tmp = this.url[p = Math.floor(Math.random()*i)] ;
						this.url[p] = this.url[i-1] ;
						this.url[i-1] = tmp ;
				}
		},

		p : 0, // 表示画像のポインタ

		// 画像表示
		put : function() {
				document.write('<a href="'+this.url[this.p][2]+'" target="_blank"><img src="'+this.url[this.p][1]+'" alt="'+this.url[this.p++][0]+'"></a>') ;
				if (this.p >= this.url.length) this.p = 0 ;
		}
} ;

images.shuffle() ;
					
/*
tsize
---------------------------------------- 

$(function () {
	$('#tsize').attr({
		href: $.cookie('fontsize')
	});
});
 
function setActiveStyleSheet(title) {
	var cssurl= 'common/css/' + title + '.css';
	$('#tsize').attr({
		href: cssurl
	});
	$.cookie('fontsize', cssurl, {
		expires: 365,
		path: '/'
	});
}
*/
