/* インデックスフラッシュ */

function index(){
 document.write('<embed pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" src="http://www.club-eve.com/swf/index.swf" type="application/x-shockwave-flash" width="800" height="500" quality="best" play="true" wmode="transparent"></emded>');
}

//*mainフラッシュ */

function main(){
 document.write('<embed height="400" width="730"  pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" src="http://www.club-eve.com/swf/main.swf" type="application/x-shockwave-flash" quality="best" play="true" wmode="transparent">');
}

//*メニューフラッシュ */

function menu(){
 document.write('<embed height="300" width="180"  pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" src="http://www.club-eve.com/swf/menu.swf" type="application/x-shockwave-flash" quality="best" play="true" wmode="transparent">');
}

/* プロフィール写真のフェードチェンジ */

var fade_speed = 3000;
var fade_duration = 8;
var image = new Array();

image[0] = 'option2.jpg';
image[1] = 'option3.jpg';
image[2] = 'option4.jpg';


var t;
var j = 0;
var p = image.length;
var pre_load = new Array();
for (i = 0; i < p; i++) {
  pre_load[i] = new Image();
  pre_load[i].src = image[i];
}
function start_fade() {
  if (document.all) {
    document.images.SlideShow.style.filter="blendTrans(duration=fade_duration)";
    document.images.SlideShow.filters.blendTrans.Apply();
  }
  document.images.SlideShow.src = pre_load[j].src;
  if (document.all) {
    document.images.SlideShow.filters.blendTrans.Play();
  }
  j = j + 1;
  if (j > (p - 1)) j = 0;
    t = setTimeout('start_fade()', fade_speed);
  }