var delay2=5000;
var count2 =1;

var cur_img2=new Array()
for (j=0;j<sl_img2.length;j++){
	cur_img2[j]=new Image()
	cur_img2[j].src=sl_img2[j]
}

function move_img2(){
if (window.createPopup)
cube2.filters[0].apply()
document.images.cube2.src=cur_img2[count2].src;
if (window.createPopup)
cube2.filters[0].play()
count2++;
if (count2==cur_img2.length)
count2=0;
setTimeout("move_img2()",delay2)
}

