// JavaScript Document
var time=5;
var rtime=8000;
var image= new Array();
var href=new Array();

image[0]="http://www.versvert.com/main1.jpg";
image[1]="http://www.versvert.com/main2.jpg";
image[2]="http://www.versvert.com/main3.jpg";
image[3]="http://www.versvert.com/main4.jpg";
image[4]="http://www.versvert.com/main5.jpg";

href[0]="http://www.versvert.com/product.html";
href[1]="http://www.versvert.com/product.html";
href[2]="http://www.versvert.com/procudt.html";
href[3]="http://www.versvert.com/procudt.html";
href[4]="http://www.versvert.com/procudt.html";

var ii=0;
function imgchange(){
imgframe.filters.blendTrans.Apply();
imgframe.filters.blendTrans.duration=time;
imgframe.src=image[ii];
imgframe.filters.blendTrans.Play();

anchar.href=href[ii];

ii=ii+1;
if (ii>4) ii=0;
t=setTimeout('imgchange()',rtime);
}
