// JavaScript Document

var cesta_k_foto = 'http://oblibene.cz/userdata/shopimg/pro-team/Image/leva-animace/';
var cesta_k_foto1 = 'http://oblibene.cz/userdata/shopimg/pro-team/Image/prava-animace/';

var jak_rychle = 5000;
var jak_rychle1 = 9000;

var pocet_fotek = 11;

var okenko = document.getElementById('okenko');
var okenko1 = document.getElementById('okenko1');

var x=1;
var x1=1;

if(okenko)okenko.style.backgroundImage = 'url(\"'+ cesta_k_foto +'foto-'+x+'.jpg\")';
if(okenko1)okenko1.style.backgroundImage = 'url(\"'+ cesta_k_foto1 +'foto-'+x1+'.jpg\")';

function animace_okenka() {
				if (x == pocet_fotek) x=1;
				okenko.style.backgroundImage = 'url(\"'+ cesta_k_foto +'foto-'+x+'.jpg\")';
				//okenko.style.content = "\"No."+x+"\"";
				x++;
}
function animace_okenka1() {
				if (x1 == pocet_fotek) x1=1;
				okenko1.style.backgroundImage = 'url(\"'+ cesta_k_foto1 +'foto-'+x1+'.jpg\")';
				//okenko1.style.content = "\"No."+x1+"\"";
				x1++;
}
if (okenko) var casovac = setInterval("animace_okenka();",jak_rychle);
if (okenko1) var casovac1 = setInterval("animace_okenka1();",jak_rychle1);