Я бы тоже не отказался от такого скрипта на mootools.
Может этот переписать кто-нибудь сможет?
<script type="text/javascript">
function smoothChange(id){
setTimeout(function(){
changePhoto(id)},5000);
}
function changePhoto(id){
var el=document.getElementById(id);
var num=el.name.substring(3);
if(num>2){num=0;}
var dir="http://site.ru/imgs/";
el.src=dir+'pic'+(num*1+1)+'.jpg';
el.name='pic'+(num*1+1);
}
</script>
<img width="270" class="photo" src="http://site.ru/imgs/pic1.jpg" name="pic1" onload="smoothChange('photoframe')" id="photoframe">