/*--------------------------------------------------------------*/
/*■トップイメージ画像 SlideShow							*/
/*				フェードインアウト(IEのみ)で自動画像切替え		*/
/*		変数の定義												*/
/*		rtime：画像が切り替わる間隔(1/1000秒単位) 				*/
/*		time ：画像の切り替えに要する時間（秒単位）				*/
/*		image：画像ファイル名を代入する配列						*/
/*																*/
/*		※画像を増減、変更したい場合は以下を調整				*/
/*			image[連番]='./images/top_img/〜ファイル名';		*/
/*																*/
/*			amount = 4;	/	image[4]の数を入れる！！            */
/*						 	6枚なら5と指定						*/
/*					 		5枚なら4と指定						*/
/*--------------------------------------------------------------*/
var rtime = 5000;
var time = 5;
var image = new Array();
image[0] = './wp-content/themes/DDC/images/top_img01.jpg';
image[1] = './wp-content/themes/DDC/images/top_img02.jpg';

var t;
var x = 0;
 /*ランダム */
var amount = 1;	/* 写真の枚数-1 */

function SlideShow() {
  if (document.all) {
    document.images.SlideShow.style.filter="blendTrans(duration=time)";
    document.images.SlideShow.filters.blendTrans.Apply();
  }
 
 /*ランダム 
 	x=Math.floor(Math.random() * image.length);
    */

  document.images.SlideShow.src = image[x];
  if (document.all) {
    document.images.SlideShow.filters.blendTrans.Play();
 /*順番 */
	
	if (x < amount) {
		x=x+1;
	}else{
		x=0;
	}
  }
    t = setTimeout('SlideShow()', rtime);
  }

