cas = 3000;
img = 62;
function animation(){
obr = Math.round( (img - 1) * Math.random() ) + 1;
document.getElementById('obrazek').src = '/images/f' + obr + '.jpg' ;
window.setTimeout('animation()',cas);
}
