counter = 4;
start = 1;
var r = new Array;
time_pause = 10000;

function rotation(nmbr){
 document.rot_img.src = '/Images/rotator/' + nmbr + '.jpg';
 setTimeout("rotation(start);", time_pause);
 start++;
 if (start>counter){start=1}
}
