var time

function FirstImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.realtordeb.com/images/tahoe-header1_02.jpg";
        time=setTimeout("SecondImage()",6000);
      }
}


function SecondImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.realtordeb.com/images/tahoe-header2_02.jpg";
        time=setTimeout("ThirdImage()",6000);
      }
}

function ThirdImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.realtordeb.com/images/tahoe-header3_02.jpg";
        time=setTimeout("FourthImage()",6000);
      }
}

function FourthImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.realtordeb.com/images/tahoe-header4_02.jpg";
        time=setTimeout("FifthImage()",6000);
      }
}

function FifthImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.realtordeb.com/images/tahoe-header5_02.jpg";
        time=setTimeout("SixthImage()",6000);
      }
}

function SixthImage() {
  if (document.images) {
        clearTimeout(time)
        document.banner.src="http://www.realtordeb.com/images/tahoe-header6_02.jpg";
        time=setTimeout("FirstImage()",6000);
      }
}