﻿

	img2 = new Image()


	seconds = "2";

	function imgOne()
	{
		document.myimg.src = 'images/3.jpg';
		setTimeout("imgTwo()", seconds * 3000);
	}
	function imgTwo()
	{
		document.myimg.src = 'images/2.jpg';
		setTimeout("imgThree()", seconds * 3000);
	}
	function imgThree()
	{
		document.myimg.src = 'images/7.jpg';
		setTimeout("imgOne()", seconds * 3000);
	}
