﻿// JavaScript Document to post random spotlight images


//store the quotations in arrays

images = new Array(5);

images[0] = "<a href = 'students/ZonaZaragoza.html'><img src='images/spotlights/t-ZonaZaragoza.png' alt='Stockton Student Spotlight: Zona Zaragoza' border='0'></a>";

images[1] = "<a href = 'students/JessicaPadilla.html'><img src='images/spotlights/t-JessicaPadilla.png' alt='Stockton Student Spotlight: Jessica Padilla' border='0'></a>";

images[2] = "<a href = 'students/VeronicaEstrada.html'><img src='images/spotlights/t-VeronicaEstrada.png' alt='Stockton Student Spotlight: Veronica Estrada' border='0'></a>";

images[3] = "<a href = 'students/JustinGann.html'><img src='images/spotlights/t-JustinGann.png' alt='Stockton Student Spotlight: Justin Gann' border='0'></a>";

images[4] = "<a href = 'students/RebeccaGarcia.html'><img src='images/spotlights/t-RebeccaGarcia.png' alt='Stockton Student Spotlight: Rebecca Garcia' border='0'></a>";

index = Math.floor(Math.random() * images.length);

function showImage(){
document.write(images[index]);
}

//done

// -->

