<!--

function timer()

{

var y
y = img1.style.posTop + 5 
if(y > document.body.clientHeight*2) y = 0
img1.style.posLeft = 25 + Math.sin(y/240) * 90
img1.style.posTop = y

y = img2.style.posTop + 7
if(y > document.body.clientHeight*2) y = 0
img2.style.posLeft = 23 + Math.sin(y/120) * 75
img2.style.posTop = y

y = img3.style.posTop + 8
if(y > document.body.clientHeight*2) y = 0
img3.style.posLeft = 22 + Math.sin(y/350) * 100
img3.style.posTop = y

y = img4.style.posTop + 9
if(y > document.body.clientHeight*2) y = 0
img4.style.posLeft = 25 + Math.sin(y/90) * 120
img4.style.posTop = y

y = img5.style.posTop + 7
if(y > document.body.clientHeight*2) y = 0
img5.style.posLeft = 22 + Math.sin(y/180) * 150
img5.style.posTop = y

y = img6.style.posTop + 10
if(y > document.body.clientHeight*2) y = 0
img6.style.posLeft = 23 + Math.sin(y/350) * 60
img6.style.posTop = y

y = img7.style.posTop + 7
if(y > document.body.clientHeight*2) y = 0
img7.style.posLeft = 25 + Math.sin(y/200) * 150
img7.style.posTop = y

y = img8.style.posTop + 8
if(y > document.body.clientHeight*2) y = 0
img8.style.posLeft = 23 + Math.sin(y/100) * 60
img8.style.posTop = y 


setTimeout("timer()", 50)

}

//-->
