// JavaScript Document

var specifyimage=new Array() 

specifyimage[0]="servicespixs/pileintegrity.gif"
specifyimage[1]="servicespixs/pda01.gif"
specifyimage[2]="servicespixs/csl.gif"
var delay=7000 


var count =1;

var cubeimage=new Array()
for (i=0;i<specifyimage.length;i++){
cubeimage[i]=new Image()
cubeimage[i].src=specifyimage[i]
}

function movecube(){
if (window.createPopup)
cube.filters[0].apply()
document.images.cube.src=cubeimage[count].src;
if (window.createPopup)
cube.filters[0].play()
count++;
if (count==cubeimage.length)
count=0;
setTimeout("movecube()",delay)
}

window.onload=new Function("setTimeout('movecube()',delay)")
	// -->