img2 = new Image() 


seconds = "4"; 

function imgOne() 
{ 
document.myimg.src = 'http://www.anca.org/assets/graphics/2007/advocacyday07/costa.gif'; 
setTimeout("imgTwo()", seconds * 1000); 
} 
function imgTwo() 
{ 
document.myimg.src = 'http://www.anca.org/assets/graphics/2007/advocacyday07/holt.gif'; 
setTimeout("imgThree()", seconds * 1000); 
} 
function imgThree() 
{ 
document.myimg.src = 'http://www.anca.org/assets/graphics/2007/advocacyday07/israel.gif'; 
setTimeout("imgFour()", seconds * 1000); 
} 
function imgFour() 
{ 
document.myimg.src = 'http://www.anca.org/assets/graphics/2007/advocacyday07/knollenberg.gif'; //needed to be added
setTimeout("imgFive()", seconds * 1000); 
} 
function imgFive() 
{ 
document.myimg.src = 'http://www.anca.org/assets/graphics/2007/advocacyday07/langevin.gif'; //needed to be added
setTimeout("imgSix()", seconds * 1000); 
} 
function imgSix() 
{ 
document.myimg.src = 'http://www.anca.org/assets/graphics/2007/advocacyday07/latourette.gif'; //needed to be added
setTimeout("imgSeven()", seconds * 1000); 
} 
function imgSeven() 
{ 
document.myimg.src = 'http://www.anca.org/assets/graphics/2007/advocacyday07/pallone.gif'; //needed to be added
setTimeout("imgEight()", seconds * 1000); 
} 
function imgEight() 
{ 
document.myimg.src = 'http://www.anca.org/assets/graphics/2007/advocacyday07/payne.gif'; //needed to be added
setTimeout("imgNine()", seconds * 1000); 
} 
function imgNine() 
{ 
document.myimg.src = 'http://www.anca.org/assets/graphics/2007/advocacyday07/reed.gif'; //needed to be added
setTimeout("imgTen()", seconds * 1000); 
} 
function imgTen() 
{ 
document.myimg.src = 'http://www.anca.org/assets/graphics/2007/advocacyday07/whitehouse.gif'; //needed to be added
setTimeout("imgOne()", seconds * 1000); 
} 
