var c=0;
var t;
var i;
var old_z;
s = 1;
old_z = 1;
function timedCount()
//меняем z-index
{
document.getElementById('img'+s).style.zIndex = old_z;

s=Math.floor(Math.random()*5);
s++;
//document.getElementById('txt').value=s;
old_z = (document.getElementById('img'+s).style.zIndex);
document.getElementById('img'+s).style.zIndex = '100';

t=setTimeout("timedCount()",3000);

}

function divs()
{
var i=1;

while (i<= 6) {
//вычисляем позиции картинок
im_l = document.getElementById('img'+i).style.left;
im_t = parseInt(document.getElementById('img'+i).style.top); 

//натягиваем на картинки полупрозрачные div'ы
document.getElementById('div'+i).style.position = 'relative';
document.getElementById('div'+i).style.left = im_l;
//alert(im_t-113);
//document.getElementById('div'+i).style.top  = im_t-113;
i++;
}
}