/***********************************************************************************
*	Set up Tuscany Hills heading pictures			                   *
***********************************************************************************/

var picImages = new Array("images/spark.jpg","images/sfountain.jpg","images/sreccenter.jpg","images/spool.jpg");
var thisPic = 0;
var imgCt = 4;

function cycle() {
  if (document.images) {
    if (document.picFrame.complete) {
      thisPic++;
      if (thisPic == imgCt) {
        thisPic = 0;
      }
      document.picFrame.src=picImages[thisPic];
    }
    setTimeout("cycle()", 4 * 1000);
  }
  else {
    document.picFrame = "";
  }
}
