var imgUrl=new Array();
var imgLink=new Array();
var imgText=new Array();
var picNum=0;
 
imgUrl[1]="images/index_47.gif";
imgLink[1]="#";
imgText[1]="A";
imgUrl[2]="images/index_47.gif";
imgLink[2]="#";
imgText[2]="°ì";
imgUrl[3]="images/index_47.gif";
imgLink[3]="#";
imgText[3]="°ì";
imgUrl[4]="images/index_47.gif";
imgLink[4]="#";
imgText[4]="°ì";
imgUrl[5]="images/index_47.gif";
imgLink[5]="#";
imgText[5]="°ì";
function NextPic(){
    if(picNum<5) picNum++ ;
    else picNum=1;
    if (document.all){
        imgInit.filters.revealTrans.Transition=Math.floor(Math.random()*23);
        imgInit.filters.revealTrans.apply();
        imgInit.filters.revealTrans.play();
    }
    document.images.imgInit.src=imgUrl[picNum];
    theTimer=setTimeout('NextPic()', 3000);
}

function goUrl(){
    window.open(imgLink[picNum],'_blank');
}




