/************************************************************************
04-July-2008 Mitch Cooper New script to replace flash for IBC.

RULES:
- Must have a minimum of two photos/images;
- Images/photos must be EXACTLY 530 pixels wide by 325 pixels tall;
- Unlimited photos/images that are individually linkable can be added;
- The slide show is random so the images will NOT appear in the order below. The appear randomly

BREAK DOWN OF ARRAYS:
An unlimited number of images can be placed on the site. The images are referenced by an array named fadeimages[]. There are three arguments to
the array each being a string surrounded by "" and separated by a comma (,). The arguments in the array are as follows:

arg1: Exact path to photo. I suggest placing each photo/image into the slideshow directory. An example of the arguement will be "slideshow/photo1.jpg";
arg2: The link that the user will be redirected to if they click the image. If no link is needed, leave this blank;
arg3: The window that the link will appear in if clicked. The options for this argument are "_new", "_self". _new is a new page and _self is loaded in current page;

The nubmer between the brackets fadeimages[XXX] is the position in the array and is referred to as an index.. It MUST begin with a 0 and must 
increment in order. You can not skip an index; example [0], [1], [3]. This example of leaving out the [2] index will cause an error. 

************************************************************************/


var fadeimages=new Array()
fadeimages[0]=["slideshow/iChoseIBC-KariMartin.jpg", "", ""]
fadeimages[1]=["slideshow/2012-Connect.jpg", "http://www.indianabiblecollege.org/page.php?m=abt&pName=Connect", ""]
fadeimages[2]=["slideshow/distancelearning.jpg", "http://www.ibcdl.org/", ""]
fadeimages[3]=["slideshow/MusicFest2012.jpg", "http://www.ibcmusicfest.com", "_new"]
//fadeimages[3]=["slideshow/falldeadline2010.jpg", "http://www.indianabiblecollege.org/page.php?m=adm&pName=admissions", ""]
//fadeimages[1]=["slideshow/pastorsdayslide.jpg", "", ""]
//fadeimages[3]=["slideshow/Spring_11_deadline.jpg", "http://www.indianabiblecollege.org/page.php?m=adm&pName=admissions", "_new"]
//fadeimages[0]=["slideshow/2011_-CONNECT-reminder.jpg", "", ""]

