var Pics = new Array();
var Anc = new Array();
var Index1 = 0;
var Time;

function LoadImages()
{

  		Pics[0] = new Image();
  		Pics[0].src = "images/main0001.jpg";
		Anc[0] = "boat.php";
  		Pics[1] = new Image();
  		Pics[1].src = "images/main0002.jpg";
		Anc[1] = "patio.php";
  		Pics[2] = new Image();
  		Pics[2].src = "images/main0003.jpg";
		Anc[2] = "rv.php";
  		Pics[3] = new Image();
  		Pics[3].src = "images/main0004.jpg";
		Anc[3] = "portable.php";
  		Pics[4] = new Image();
  		Pics[4].src = "images/main0005.jpg";
		Anc[4] = "boat.php";
  		Pics[5] = new Image();
  		Pics[5].src = "images/main0006.jpg";
		Anc[5] = "boat.php";
  		Pics[6] = new Image();
  		Pics[6].src = "images/main0007.jpg";
                Anc[6] = "portable.php";
}
function ChangePic(pageName)
{
    document.getElementById('title_pic').src = Pics[pageName].src;
    Index1 = pageName;
}
function followLink()
{
    window.location=Anc[Index1];
    
}
function SetTimer()
{
  Timer = setInterval("Animate()", 4000);
}

function Animate()
{
  Index1 ++;
  if (Index1 > 6) {
    Index1 = 0;
  }
  document.getElementById('title_pic').src = Pics[Index1].src;

}


