<div id="place" style="border:red solid 1px;height:100px;width:340px;"></div>
<script type="text/javascript">
var phr = new Array();
phr.push("http://mybb.ru/f/collection/0211.gif");
phr.push("http://mybb.ru/f/collection/0213.gif");
phr.push("http://i039.radikal.ru/0806/ec/a5ffc6d7cfd9.gif");
function Rotator_cont() {
var s = 5000; // Время отображения
var N=phr.length;
var i=Math.round(Math.random()*(N));Rotator(i);
function Rotator(i){
i++; if(i>N-1){i=0};//alert(i);
document.getElementById('place').style.backgroundImage='url('+phr[i]+')';
timerId01=setTimeout(function(){Rotator(i)},s);return;}
}Rotator_cont()
</script>