<!-- 
var img1 = new Image();
img1.src = "http://file.cami794279.cafe24.com/Design/skin_3/main1.jpg"    //이미지 경로①
var img2 = new Image();
img2.src = "http://file.cami794279.cafe24.com/Design/skin_3/main2.jpg"
var img3 = new Image();
img3.src = "http://file.cami794279.cafe24.com/Design/skin_3/main3.jpg"
var img4 = new Image();
img4.src = "http://file.cami794279.cafe24.com/Design/skin_3/main4.jpg"   //더 추가 가능
 
var maxLoops = 4;  //전체 이미지의 수②
var bInterval = 4; //이미지 전환시 잠시 멈추는 시간
var count = 2;

function init() {
 blendObj.filters.blendTrans.apply();
 document.images.blendObj.src = eval("img"+count+".src");
 blendObj.filters.blendTrans.play();

 if(count < maxLoops) count++; //마지막 이미지가 아니라면 다음 이미지로
 else count = 1; //마지막 이미지라면 처음 이미지로

 setTimeout("init()", bInterval*500+1500);
}
//-->