<SCRIPT language=VBscript>
'-----------------------------------
'Script writer unknown
'-----------------------------------
Dim scw,sch,th,ppic1w,ppic1h,cch1,ccw1,A1,R1,th1,ppic2w,ppic2h,cch2,ccw2,A2,R2,th2
Dim ppic3w,ppic3h,cch3,ccw3,A3,R3,th3
Sub Window_OnLoad()
scw=document.body.clientWidth
sch=document.body.clientHeight

pich=38
picw=31

cch1=200
ccw1=scw/2+140
cch2=190
ccw2=scw/2+150
cch3=210
ccw3=scw/2+130
A1=6.28
R1=130
A2=6.28
R2=140
A3=6.28
R3=150
th1=SetTimeOut("circle1", 30)
th2=SetTimeOut("circle2", 30)
th3=SetTimeOut("circle3", 30)
ClearInterval(th)
End sub
Sub circle1()
ClearTimeOut(th1)
A1=A1-0.03
ppic1h=R1*sin(A1)+cch1
ppic1w=2*R1*cos(A1)+ccw1-200
pic1.style.Top=ppic1h
pic1.style.Left=ppic1w
th1=SetTimeOut ("circle1",30)
End sub
Sub circle2()
ClearTimeOut(th2)
A2=A2-0.02
ppic2h=R2*sin(A2)+cch2
ppic2w=2*R2*cos(A2)+ccw2-100
pic2.style.Top=ppic2h
pic2.style.Left=ppic2w
th2=SetTimeOut ("circle2",30)
End sub
Sub circle3()
ClearTimeOut(th3)
A3=A3+0.02
ppic3h=R3*sin(A3)+cch3
ppic3w=2*R3*cos(A2)+ccw3-200
pic3.style.Top=ppic3h
pic3.style.Left=ppic3w
th3=SetTimeOut ("circle3",30)
End sub
</SCRIPT>
<div align="center">
<IMG id=pic1 style="POSITION: absolute; TOP: 150px; LEFT: 150px; WIDTH: ImageWidthpx; HEIGHT: ImageHeightpx" src="caminho da primeiraa imagem">
<IMG id=pic2 style="POSITION: absolute; TOP: 150px; LEFT: 150px; WIDTH: ImageWidthpx; HEIGHT: ImageHeightpx" src="caminho da segunda imagem">
<IMG id=pic3 style="POSITION: absolute; TOP: 150px; LEFT: 150px; WIDTH: ImageWidthpx; HEIGHT: ImageHeightpx" src="caminho da terceira imagem"></div>