img2 = new Image()


seconds = "6";

function imgOne()
{
	setTimeout("imgTwo()", seconds * 1000);
}
function imgTwo()
{
	document.myimg.src = 'http://www.golfmax.net/websites/00245/masthead/mast-riverway01.jpg';
	setTimeout("imgThree()", seconds * 1000);
}
function imgThree()
{
	document.myimg.src = 'http://www.golfmax.net/websites/00245/masthead/mast-kensington01.jpg';
	setTimeout("imgFour()", seconds * 1000);
}
function imgFour()
{
	document.myimg.src = 'http://www.golfmax.net/websites/00245/masthead/mast-burnaby02.jpg';
	setTimeout("imgFive()", seconds * 1000);
}
function imgFive()
{
	document.myimg.src = 'http://www.golfmax.net/websites/00245/masthead/mast-riverway02.jpg';
	setTimeout("imgOne()", seconds * 1000);
}


