// JavaScript Document

step=0;
function autoImgFlip() {
if (step < 1) {step++;}
else {step=0;}
if (step==0)
{a.src="images/img1.jpg";}
if (step==1)
{a.src="images/img2.jpg";}
setTimeout("autoImgFlip()", 9000);
}

