imgs=Array("http://hiddenanime.com/images/doom/1.png","http://hiddenanime.com/images/doom/2.png");
var x=0;

function change() {
document.getElementById("bob").src=imgs[++x];

if (x==1) {
x=-1;
}
}
if (!imgs[x+1]) {
x=-1;
}