/*
DepartmentImagesBar.js
Last edited on 7/14/2008 by Judy Robinson

This file is included in all pages for this site.
Any changes made here will be reflected in the ENTIRE site.
*/

// JavaScript written by Judy Robinson to interpolate random images into a page.

var nbrDisplayed = 4 // number of pictures to be displayed on main page

filenames =  
[ 
 "/images/Department/IMG_0217small.jpg",
 "/images/Department/boatNew.jpg",  
 "/images/Department/Home4New.jpg",  
 "/images/Department/StudentTripNew.jpg",  
 "/images/Department/IMG_0051small.jpg",  
 "/images/Department/018Small.jpg",  
 "/images/Department/IMG_0091small.jpg",
 "/images/Department/IMG_0024small.jpg",
 "/images/Department/IMG_0132small.jpg",
 "/images/Department/IMG_0150small.jpg",
 "/images/Department/IMG_0047small.jpg",
 "/images/Department/IMG_0201small.jpg",
 "/images/Department/IMG_0216small.jpg",
 "/images/Department/slide1small.jpg",
 "/images/Department/slide2small.jpg",
 "/images/Department/slide4small.jpg",
 "/images/Department/slide6small.jpg",
 "/images/Department/Karnaktemplesmall.jpg",
 "/images/Department/SandyHookDrLeesmall.jpg",
 "/images/Department/y2small.jpg",
 "/images/Department/y4small.jpg",
 "/images/Department/y5small.jpg"
] 



for (i=0; i<nbrDisplayed; i++)
{   var index =  Math.floor(Math.random()*filenames.length);

    document.write("<IMG SRC=" +filenames[index]+" ALT='" + filenames[index] + "' HEIGHT=161 WIDTH=189 BORDER=0>");
    
    filenames.splice(index, 1); //remove selected pic from the array so it will not be chosen again
}
