// JavaScript Document
img2 = new Image()

seconds = "10";

function imgOne()
{
document.myimg.src = 'images/banners/alaska.jpg'; //needed to be added
setTimeout("imgTwo()", seconds * 1000);
}
function imgTwo()
{
document.myimg.src = 'images/banners/asia.jpg';
setTimeout("imgThree()", seconds * 1000);
}
function imgThree()
{
document.myimg.src = 'images/banners/australia_newzealand.jpg';
setTimeout("imgFour()", seconds * 1000);
}
function imgFour()
{
document.myimg.src = 'images/banners/caribbean.jpg'; //needed to be added
setTimeout("imgFive()", seconds * 1000);
}
function imgFive()
{
document.myimg.src = 'images/banners/europe.jpg';
setTimeout("imgSix()", seconds * 1000);
}
function imgSix()
{
document.myimg.src = 'images/banners/hawaii_tahiti.jpg';
setTimeout("imgSeven()", seconds * 1000);
}
function imgSeven()
{
document.myimg.src = 'images/banners/southamerica.jpg';
setTimeout("imgEight()", seconds * 1000);
}
function imgEight()
{
document.myimg.src = 'images/banners/worldcruise.jpg';
setTimeout("imgOne()", seconds * 1000);
}