
var imgID = "banner";            // The ID of the image tag that we're changing
var imgLinkID = "";              // The ID of the <a href> tag that changes with the image. 
                                 // Use a blank string if the image is not linked or if the link should not be changed with the images
var imgPath = "images/rotation"; // Path to the images directory. Can be a full URL, a root-based URI, or a relative URI
var randomOrder = true;          // Set to false to rotate through the images in the order they're defined below
var delayInSeconds = 20;         // Use 0 if imageRotate should only make one swap per page load
var crossFadeFunction = false;   // Change to crossfade (no quotes) if you want to use the crossfade function.
                                 // Note - there are two styles that must be defined for the crossfade function to work.

// Don't change these three lines
var imgs = new Array();
var alts = new Array();
var links = new Array();

imgs[imgs.length] = "market.jpg";
alts[alts.length] = "A bazaar scene in Palestine";

imgs[imgs.length] = "rice_farmers.jpg";
alts[alts.length] = "Three rice farmers walk through a field in Indonesia";

imgs[imgs.length] = "children_azerbaijan.jpg";
alts[alts.length] = "Children in Azerbaijan smile as they gather wheat";

imgs[imgs.length] = "computer.jpg";
alts[alts.length] = "A young man learns computer networking skills as a result of the entra 21 alliance in Latin America";

imgs[imgs.length] = "pakistan_shopkeeper.jpg";
alts[alts.length] = "A Pakistani shopkeeper looks at a watch in his display case";

imgs[imgs.length] = "gda_top_banner3.jpg";
alts[alts.length] = "The Global Development Alliance mobilizes the ideas, creativity, and resources of development partners for greater impact";

