﻿var index=1;  // Image Count

function play()
{
    var item=new Array();
    item=item.concat("banner.jpg");
    item=item.concat("banner2.jpg");
    item=item.concat("banner3.jpg");
	item=item.concat("banner4.jpg");
       
       if(index>=item.length)
       {
            index=0;
       }
       var str=item[index];
       var control=document.getElementById("banner");
       if (document.all){control.filters.blendTrans.apply();}
       control.style.background = "url(../images/" + str + ") no-repeat 0 0";
       if (document.all){control.filters.blendTrans.play();}
       index++;
       setTimeout("play()",5000); 
}
window.onload = function(){setTimeout("play()",5000);} 