Люди добрые подскажите как убрать рамку вокруг баннера, пробовал добавить border в параметры, но увы IE всё равно отображает с рамкой, во всех остальных браузерах всё нормально.
<script type="text/javascript"><!--
$rotator = {
banners: [
{url: 'ru/nadvodobst.html', img: 'images/index_12.png', title: 'Изделие 1'},
{url: 'ru/nadvodobst.html', img: 'images/index_12-2.png', title: 'Изделие 2'},
{url: 'ru/nadvodobst.html', img: 'images/index_12-3.png', title: 'Изделие 3'},
{url: 'ru/nadvodobst.html', img: 'images/index_12-4.png', title: 'Изделие 4'},
{url: 'ru/nadvodobst.html', img: 'images/index_12-5.png', title: 'Изделие 5'}
],
options: {
border: '0',
width: '1000',
height: '197',
target: 'frame1',
time: 7000
},
num: 0,
exec: function(id){
document.getElementById(id).innerHTML = '<a href="' + this.banners[this.num].url + '" title="' + this.banners[this.num].title + '" target="' + this.options.target + '"><img src="' + this.banners[this.num].img + '" width="' + this.options.width + '" height="' + this.options.height + '" alt="' + this.banners[this.num].title + '"><\/a>';
if(this.num < this.banners.length - 1){
this.num ++;
}else{
this.num = 0;
}
},
ready: function(id){
var loadevent = window.onload;
window.onload = function(){
if(typeof loadevent == 'function') loadevent();
$rotator.exec(id);
window.setInterval(function(){
$rotator.exec(id);
}, $rotator.options.time);
}
}
}
$rotator.ready('banner');
//-->
</script>
<div id="banner" ><a href="http://szenprogs.ru/blog/rotator_bannerov/2012-08-26-142"></a></div>