﻿var index=1;  // Image Count
function play()
{
   
    var item=new Array();       
    item=item.concat("index_banner2.jpg");
 item=item.concat("index_banner3.jpg");	
	item=item.concat("index_banner.jpg");
       
       if(index>=item.length)
       {
            index=0;
       }
       var str=item[index];
       var control=document.getElementById("Imgbanner");
       if (document.all){control.filters.blendTrans.apply();}
       control.src="/Images/"+str;
       if (document.all){control.filters.blendTrans.play();}
       
       index++;
       setTimeout("play()",5000); 
}
window.onload = function(){
	setTimeout("play()",5000); 
	}
