<!--
var time=2;
var rtime=5000;
var image= new Array();
var href= new Array();
var title= new Array();

image[0]="/images/top.jpg";
image[1]="/images/top.gif";
image[2]="/images/top.gif";



href[0]="/index.htm";
href[1]="/index.htm";
href[2]="/index.htm";

var ii=0;

function imgchange(){
imgframe.filters.blendTrans.Apply();
imgframe.filters.blendTrans.duration=time;
imgframe.src=image[ii];
imgframe.alt=title[ii];
imgframe.filters.blendTrans.Play();

anchar.href=href[ii];
anchar.title=title[ii];

ii=ii+1;
if (ii>2) ii=0;
t=setTimeout('imgchange()',rtime);
}

