/**
 * Author: meta-logica
 * Last modified on Sept 2009
 */

/* Global variables, load pictures for slideshow on main page */

var timeDelay = 3.5; // change delay time in seconds
var Pics = new Array // Array holding all slides 309 x 113 px
("images/tv/tv01.jpg"
,"images/tv/tv02.jpg"
,"images/tv/tv03.jpg"
,"images/tv/tv03.jpg"
,"images/tv/tv04.jpg"
,"images/tv/tv05.jpg"
,"images/tv/tv06.jpg"
,"images/tv/tv07.jpg"
,"images/tv/tv08.jpg"
,"images/tv/tv09.jpg"
);
var howMany = Pics.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();

/* startPics get called during onload, currently only from index.html */
function startPics(doc) {
  PicCurrent = doc.getElementById("ChangingPics") //Make sure there is an img tag with this id in index.html
  setInterval("slideshow()", timeDelay);
}

function slideshow() {
  PicCurrentNum++;
  if (PicCurrentNum == howMany) {
    PicCurrentNum = 0;
  }
  PicCurrent.src = Pics[PicCurrentNum];
}

function displayMail(doc, prefix, display) {
  if (display == null || display == "") {
    doc.write("<a href=\"mailto:" + prefix + "@" + "ericshomes.net\">" + prefix + "@" + "ericshomes.net</a>");
  }
  else {
    doc.write("<a href=\"mailto:" + prefix + "@" + "ericshomes.net\">" + display + "</a>");
  }
}

