/*+++++++++++++++++++++++
Two arrays are used below to list all the "featured images" areas on both the home page and the interior landing pages. 
The home page rotates through them and the landing pages are told what ones to pull, and they do not rotate.

Array indexes should match each other ex.  imageArr[x] = captionArr[x] (X = the index number)
+++++++++++++++++++++++++*/

// images array
var imageArr = new Array();
imageArr[0] = "url(images/featureImages/damPic.jpg)";
imageArr[1] = "url(images/featureImages/groundZeroPic.jpg)";
imageArr[2] = "url(images/featureImages/research_Quake.jpg)";
imageArr[3] = "url(images/featureImages/traffic_GPS_pic.jpg)";
imageArr[4] = "url(images/featureImages/Solar_tagReader.jpg)";
imageArr[5] = "url(images/featureImages/levee_pic.jpg)";
imageArr[6] = "url(images/featureImages/lupita_peru.jpg)";
imageArr[7] = "url(images/featureImages/quake_house.jpg)";

// caption arrays
var captionArr = new Array();
captionArr[0] = "Approximately 30 students participated in a field trip to the Gilboa Dam";
captionArr[1] = "New transportation hub; former World Trade Center site";
captionArr[2] = "NEES-NSF Geotechnical Centrifuge Research Center at Rensselaer-150 g-ton Centrifuge";
captionArr[3] = "U.S. Department of Transportation Selects RPI as Remote Sensing Research Partner";
captionArr[4] = "Researchers will be testing an array of wireless, solar-powered readers to monitor traffic flow";
captionArr[5] = "What happened with Katrina? Rensselaer's leading researchers are seeking answers";
captionArr[6] = "Faculty and Students designed ways for rural Nigerians to have safe drinking water";
captionArr[7] = "Earthquake Testing on Woodframe Construction";

// link arrays
var linkArr = new Array();
linkArr[0] = "#";
linkArr[1] = "http://www.rpi.edu/dept/cits/";
linkArr[2] = "http://www.nees.rpi.edu/";
linkArr[3] = "http://soenews.rpi.edu/update.do?artcenterkey=623";
linkArr[4] = "http://www.eng.rpi.edu/magazine/sp07/hybrid.cfm";
linkArr[5] = "http://www.eng.rpi.edu/magazine/sp06/sp06news_katrina.cfm";
linkArr[6] = "http://soenews.rpi.edu/update.do?artcenterkey=622";
linkArr[7] = "http://soenews.rpi.edu/update.do?artcenterkey=511";