// ¾Ö´Ï¸ÞÀÌ¼Ç ¼Óµµ¸¦ ¼³Á¤ ÇÏ¼¼¿ä (¹Ð¸®¼¼ÄÁµå)
var slideShowSpeed = 5000

// ÆäÀÌµù ¼Óµµ (ÃÊ)
var crossFadeDuration = 5

// ÀÌ¹ÌÁö ÆÄÀÏµéÀ» ¼³Á¤ ÇÏ¼¼¿ä
var Pic = new Array() 
//Pic[0] = 'http://www.myusvisa.com/img/0408/top_photo_img1.gif'
//Pic[1] = 'http://www.myusvisa.com/img/0408/top_photo_img3.gif'
//Pic[2] = 'http://www.myusvisa.com/img/0408/top_photo_img5.gif'
//Pic[3] = 'http://www.myusvisa.com/img/0408/top_photo_img6.gif'
//Pic[4] = 'http://www.myusvisa.com/img/0408/top_photo_img7.gif'
//Pic[5] = 'http://www.myusvisa.com/img/0408/top_photo_img8.gif'
//Pic[6] = 'http://www.myusvisa.com/img/0408/top_photo_img9.gif'
//Pic[7] = 'http://www.myusvisa.com/img/0408/top_photo_img10.gif'

Pic[0] = 'http://www.myusvisa.com/img/0408/top_photo_img10.gif'
Pic[1] = 'http://www.myusvisa.com/img/0408/top_photo_img9.gif'
Pic[2] = 'http://www.myusvisa.com/img/0408/top_photo_img8.gif'
Pic[3] = 'http://www.myusvisa.com/img/0408/top_photo_img7.gif'
Pic[4] = 'http://www.myusvisa.com/img/0408/top_photo_img6.gif'
Pic[5] = 'http://www.myusvisa.com/img/0408/top_photo_img5.gif'
Pic[6] = 'http://www.myusvisa.com/img/0408/top_photo_img3.gif'
Pic[7] = 'http://www.myusvisa.com/img/0408/top_photo_img1.gif'

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){
   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad[j].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}


 // mouse over
var onImage, offImage;
var imgSrc;

onImage = new Array();
offImage = new Array();

function MouseOver(index) {
	imgSrc = eval("document.OnOff" + index);
	imgSrc.src = onImage[index].src;
}

function MouseOut(index) {
	imgSrc = eval("document.OnOff" + index);
	imgSrc.src = offImage[index].src;		
}

onImage[1] = new Image(); 
onImage[1].src="http://www.myusvisa.com/img/0408/top_menu1_1.gif";
onImage[2] = new Image(); 
onImage[2].src="http://www.myusvisa.com/img/0408/top_menu2_1.gif";
onImage[3] = new Image(); 
onImage[3].src="http://www.myusvisa.com/img/0408/top_menu3_1.gif";
onImage[4] = new Image(); 
onImage[4].src="http://www.myusvisa.com/img/0408/top_menu4_1.gif";
onImage[5] = new Image(); 
onImage[5].src="http://www.myusvisa.com/img/0408/top_menu5_1.gif";
onImage[6] = new Image(); 
onImage[6].src="http://www.myusvisa.com/img/0408/top_menu6_1.gif";
onImage[7] = new Image(); 
onImage[7].src="http://www.myusvisa.com/img/0408/top_menu7_1.gif";
onImage[8] = new Image(); 
onImage[8].src="http://www.myusvisa.com/img/0408/top_menu8_1.gif";


offImage[1] = new Image();
offImage[1].src="http://www.myusvisa.com/img/0408/top_menu1.gif";
offImage[2] = new Image();
offImage[2].src="http://www.myusvisa.com/img/0408/top_menu2.gif";
offImage[3] = new Image();
offImage[3].src="http://www.myusvisa.com/img/0408/top_menu3.gif";
offImage[4] = new Image();
offImage[4].src="http://www.myusvisa.com/img/0408/top_menu4.gif";
offImage[5] = new Image();
offImage[5].src="http://www.myusvisa.com/img/0408/top_menu5.gif";
offImage[6] = new Image();
offImage[6].src="http://www.myusvisa.com/img/0408/top_menu6.gif";
offImage[7] = new Image();
offImage[7].src="http://www.myusvisa.com/img/0408/top_menu7.gif";
offImage[8] = new Image();
offImage[8].src="http://www.myusvisa.com/img/0408/top_menu8.gif";