// JavaScript Document

// 表示する画像
      var images = ["http://cialiez.com/new/wp-content/themes/cialiez/images/index/img001.jpg","http://cialiez.com/new/wp-content/themes/cialiez/images/index/img002.jpg","http://cialiez.com/new/wp-content/themes/cialiez/images/index/img003.jpg","http://cialiez.com/new/wp-content/themes/cialiez/images/index/img000.jpg"] ;

      var tid = false ;
			var gotolink = "#";

      // 画像切り替え
      function changeImage(n,jump) {
        //if (tid != false) return ;
        var targentImg = document.getElementById("changing") ;
        document.getElementById("imgspace").style.backgroundImage = 'url('+targentImg.src+')' ;
        document.getElementById("imgspace").style.backgroundRepeat = 'no-repeat' ;
        targentImg.style.filter = 'alpha(opacity=0, type=0)' ;
        targentImg.style.MozOpacity = targentImg.style.opacity = 0 ;
        targentImg.src = images[n] ;
        clearTimeout(tid) ;
        tid = setTimeout("fadeIn(30)", 100) ;
				//alert(jump);
				gotolink = jump;
      }

      // フェードイン
      function fadeIn(o) {
        var targentImg = document.getElementById("changing") ;
        targentImg.style.filter = 'alpha(opacity='+o+', type=0)' ;
        targentImg.style.filter = "-moz-opacity:'+o+'";
				//targentImg.style.filter = "opacity:'+o+'";
				targentImg.style.MozOpacity = targentImg.style.opacity = o / 100 ;
        if (o < 100) tid = setTimeout("fadeIn("+(o+30)+")", 100) ;
        else tid = false ;
      }

      onload = function() {
        // 画像先読み
        preloadImages = [] ;
        for (var i = 0; i < images.length; ++i) {
          preloadImages[i] = new Image() ;
          preloadImages[i].src = images[i] ;
        }
      }
			
			function warp(){
				window.location=gotolink;
			}
