var time

function FirstImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.tahoedreamteam.com/images/pic5_06.jpg";
        time=setTimeout("SecondImage()",5000);
      }
}


function SecondImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.tahoedreamteam.com/images/pic4_06.jpg";
        time=setTimeout("ThirdImage()",5000);
      }
}

function ThirdImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.tahoedreamteam.com/images/pic3_06.jpg";
        time=setTimeout("FourthImage()",5000);
      }
}

function FourthImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.tahoedreamteam.com/images/pic2_06.jpg";
        time=setTimeout("FifthImage()",5000);
      }
}

function FifthImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.tahoedreamteam.com/images/pic1_06.jpg";
        time=setTimeout("FirstImage()",5000);
      }
}