var item=new Array() item[0]="images/home/resort_promo.jpg"; item[1]="images/home/retail-discount_promo.jpg"; var links=new Array(); links[0]="http://www.qri.com.au/take_cover/"; links[1]="http://www.qri.com.au/take_it_shopping/gift_cards.html"; var targets=new Array(); targets[0]="_self"; targets[1]="_self"; var current=0; var ns6=document.getElementById&&!document.all; function changeItem(){ thisImage = document.getElementById('promoImg'); thisImage.src = item[current]; //crossfade(document.getElementById('promoImg'), item[current], '2', ''); thisItem = document.getElementById('promoURL'); thisItem.href = links[current]; thisItem.target = targets[current]; if (current==1) current=0; else current++; setTimeout("changeItem()",8000); }