var texty = new Array();
texty[0] = '<a href="http://usti.naseadresa.cz"><img src="img/partneri/adresa.jpg" alt="Naše adresa" /></a>';
texty[1] = '<a href="http://www.azsanace.cz"><img src="img/partneri/az_sanace.jpg" alt="AZ Sanace" /></a>';
texty[2] = '<a href="http://www.barxenergy.cz"><img src="img/partneri/barx.jpg" alt="BARX Energy" /></a>';
texty[3] = '<a href="http://www.buspromotion.cz"><img src="img/partneri/bus.jpg" alt="Bus Promotion" /></a>';
texty[4] = '<a href="http://www.cbf.cz"><img src="img/partneri/cbf.jpg" alt="ČBF" /></a>';
texty[5] = '<a href="http://www.hasa.cz"><img src="img/partneri/hasa.jpg" alt="Háša Autocentrum" /></a>';
texty[6] = '<a href="http://www.kr-ustecky.cz"><img src="img/partneri/kraj.jpg" alt="Ústecký kraj" /></a>';
texty[7] = '<a href="http://www.rwe.cz"><img src="img/partneri/rwe.jpg" alt="RWE" /></a>';
texty[8] = '<a href="http://www.sportcentrumsluneta.cz"><img src="img/partneri/sluneta.jpg" alt="SPORTCENTRUM SLUNETA" /></a>';
texty[9] = '<a href="http://www.termo.cz"><img src="img/partneri/termo.jpg" alt="Termo+" /></a>';
texty[10] = '<a href="http://www.ujep.cz"><img src="img/partneri/ujep.jpg" alt="UJEP" /></a>';
texty[11] = '<a href="http://www.usti-nad-labem.cz"><img src="img/partneri/unl.jpg" alt="Město Ústí nad Labem" /></a>';

var interval = 3;
var currtext = 0;

function changeText() {
if (currtext>texty.length-1) currtext=0;
document.getElementById('partneri').innerHTML = texty[currtext];
currtext++;
setTimeout('changeText()', interval*1500);
}