<script type="text/javascript">
<!--
var i=0;
var svich=true;
img_a=new Array();
img_a[0]=new Image();
img_a[1]=new Image();
img_a[0].src="http://th78.photobucket.com/albums/j109/rftrevino18/th_wallpaper-machu-picchu-1-1024.jpg";
img_a[1].src="http://www.fototema.ru/uploads/posts/2007-12/1198440705_02.jpg";
function list_img(){
if(svich==true){
document.images[0].src=img_a[i].src ;
i++ ;
if(i>1) i=0 ;
setTimeout("list_img()", 100);
}
}
function img_start(){
svich=true;
list_img();
}
function img_stop(){
svich=false;
}
</script>
<div align="center" style="padding: 150px 0 50px 0; "><img src=http://th78.photobucket.com/albums/j109/rftrevino18/th_wallpaper-machu-picchu-1-1024.jpg"></div>
<div style="position:absolute;top:600px"><input type="button" onclick="img_start()" ><input type="button" onclick="img_stop()">
</div>