// Random Images and caption

images = new Array(3);
images[0] = "<img src='images/splash/random/splash1.jpg' alt='Children -- Enfants' width='519' height='188'>";

images[1] = "<img src='images/splash/random/splash2.gif' alt='Rainforest -- Forêt tropicale' width='519' height='188'>";

images[2] = "<img src='images/splash/random/splash3.gif' alt='Peace is in Our Hands -- Cultivons la paix' width='519' height='188'>";

index = Math.floor(Math.random() * images.length);

function ranimage() {
    return( images[index])
}

