<!--hide from ignorant browsers
    
var filePath=""
var max=30;
var speed=500;
var i=0;

arrows= new Array( max)



arrows[0]=new Image(31,30);
arrows[0].src=filePath+"logo1.gif";

arrows[1]=new Image(31,30);
arrows[1].src=filePath+"logo2.gif";

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<=7)
{

document.logo.src=arrows[i].src
i=i+1
intervalID=setTimeout("animate()",speed)
}

else
{
i=0
intervalID=setTimeout("animate()",8000)
}

}




//end hiding-->

