var time

function FirstImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.southtahoerealestate.com/images/photo_sub_beauty_09.jpg";
        time=setTimeout("SecondImage()",7000);
      }
}


function SecondImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.southtahoerealestate.com/images/photo_sub_leisure_09.jpg";
        time=setTimeout("ThirdImage()",7000);
      }
}

function ThirdImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.southtahoerealestate.com/images/photo_sub_recreation_09.jpg";
        time=setTimeout("FirstImage()",7000);
      }
}