<!--hide from ignorant browsers
var ns4 = (document.layers);
    
var filePath=""
var max=30;
var speed=2000;
var i=0;

arrows= new Array( max)



arrows[0]=new Image(200,140);
arrows[0].src=filePath+"copier.jpg";

arrows[1]=new Image(200,140);
arrows[1].src=filePath+"copier-2.jpg";

arrows[2]=new Image(31,30);
arrows[2].src=arrows[0].src

arrows[3]=new Image(31,30);
arrows[3].src=arrows[1].src

arrows[4]=new Image(31,30);
arrows[4].src=arrows[0].src

arrows[5]=new Image(31,30);
arrows[5].src=filePath+"logo3.gif"; 

arrows[6]=new Image(31,30);
arrows[6].src=filePath+"logo.gif";

arrows[7]=new Image(31,30);
arrows[7].src=arrows[6].src



function animate( )
{
if(i<=1)
{

document.copier.src=arrows[i].src
i=i+1
intervalID=setTimeout("animate()",speed)
}

else
{
i=0
intervalID=setTimeout("animate()",speed)
}

}




//end hiding-->

