I have a set of rotating linked images on a site I am making but it uses javascript to rotate them, problem is IE stops them appearing and sticks the activex yellow bar at the top.
Obviously no one is actually going to allow activex to run from a site so I was wondering if there was a different code I could use to do the same thing without javascript?
Code I am using at the moment
Obviously no one is actually going to allow activex to run from a site so I was wondering if there was a different code I could use to do the same thing without javascript?

Code I am using at the moment
Code:
<SCRIPT language=JavaScript>
var img_width = "468";
var img_height = "60";
var img_title = "Click Here";
var ad=new Array()
//insert here your images src
ad[0]='http://www.site.com/image1';
ad[1]='http://www.site.com/image2';
ad[2]='http://www.site.com/image3';
ad[3]='http://www.site.com/image4';
ad[4]='http://www.site.com/image5';
var links=new Array()
//insert here your links
links[0]='http://www.links1';
links[1]='http://www.links2';
links[2]='http://www.links3';
links[3]='http://www.links4';
links[4]='http://www.links5';
var xy=Math.floor(Math.random()*ad.length);
document.write('<a href="'+links[xy]+'" target="_blank"><img src="'+ad[xy]+'" width="'+img_width+'" height="'+img_height+'" alt="'+img_title+'"></a>');
</SCRIPT>