/*
 *
 *
 * Copyright (c) 2003 DRECOM CO.,LTD. All rights reserved.
 * 
 * http://www.drecom.co.jp/
 */
 
/*
 * 常に手前に表示するウィンドウを開く
 */

/* ランダム用画像 */
INGls = new Array();

INGls[0]='001';
INGls[1]='002';
INGls[2]='003';
INGls[3]='004';

/* 出力確率 */
PROls = new Array();

PROls[0]=25;
PROls[1]=25;
PROls[2]=25;
PROls[3]=25;


var m=Math.random()*100;
var x=0;
for(i=0;i<PROls.length;i++){
	x+=PROls[i];
	if(m<x){
		LoadING=INGls[i];
		break;
	}
}

window.onload=function Lovele(){
	if(document.getElementById){
		document.getElementById('siteTitle').style.backgroundImage='url(/file/image/top/season/'+LoadING+'_1.gif)';
		document.getElementById('seasonPict').style.backgroundImage='url(/file/image/top/season/'+LoadING+'_2.jpg)';
	}else if(document.all){
	document.all('siteTitle').style.backgroundImage='url(/file/image/top/season/'+LoadING+'_1.gif)';
		document.all('seasonPict').style.backgroundImage='url(/file/image/top/season/'+LoadING+'_2.jpg)';
	}
}