﻿{\rtf1\mac\ansicpg10000\cocoartf102
{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\margl1440\margr1440\vieww9000\viewh9000\viewkind0
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural

\f0\fs24 \cf0 /* This script and many more are available free online at\
The JavaScript Source :: http://javascript.internet.com\
Created by: Lee Underwood :: http://javascript.internet.com/ */\
\
var bannerImg = new Array();\
  // Enter the names of the images below\
  bannerImg[0]="../photos/int1.jpg";\
  bannerImg[1]="../photos/int6.jpg";\
  bannerImg[2]="../photos/int12.jpg";\
\
var newBanner = 0;\
var totalBan = bannerImg.length;\
\
function cycleBan() \{\
  newBanner++;\
  if (newBanner == totalBan) \{\
    newBanner = 0;\
  \}\
  document.banner.src=bannerImg[newBanner];\
  // set the time below for length of image display\
  // i.e., "4*1000" is 4 seconds\
  setTimeout("cycleBan()", 4*1000);\
\}\
window.onload=cycleBan;}