
/*Provides random images to be displayed on the main page.*/
function random_imglink(){

//specify random images below. You can have as many as you wish
var myimages=new Array()
myimages[1]="images/hompage1.jpg"
myimages[2]="images/hompage2.jpg"
myimages[3]="images/hompage3.jpg"
myimages[4]="images/hompage4.jpg"
myimages[5]="images/hompage5.jpg"
myimages[6]="images/hompage6.jpg"
myimages[7]="images/hompage7.jpg"
myimages[8]="images/hompage8.jpg"

//specify alt text below.
var myimagesalt=new Array()
myimagesalt[1]="Dr. Patrick McCutcheon teaching field class on Manastash Ridge"
myimagesalt[2]="Dr. Bruce Palmquist with students in class"
myimagesalt[3]="Dr. Holly Pinkart with research students at Soap Lake"
myimagesalt[4]="Dr. Boris Kovalerchuk lecturing"
myimagesalt[5]="Dr. Charlie Rubin with students in computer lab"
myimagesalt[6]="Science building on the Ellensburg Campus in winter"
myimagesalt[7]="Native American Dance Research: conducted by Pow Wow dancer Jon Shellenberger (Yakama) with faculty mentor Dr. Tracy Andrews." 
myimagesalt[8]="CWU Student Volunteer in Africa"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img src="'+myimages[ry]+'" alt="'+myimagesalt[ry]+'" border=0 />')
}



/*Provides random images to be displayed on the about page.*/
function random_imglinkAboutPage(){

//specify random images below. You can have as many as you wish
var myimages = new Array()

myimages[1]="NewImages/AboutImages/buildingsCollage1.jpg"
myimages[2]="NewImages/AboutImages/buildingsCollage2.jpg"
/*
myimages[1]="../../Images/AboutImages/aer506-012rvtest1-medium.jpg"
myimages[2]="../../Images/AboutImages/b17v7279rv-medium.jpg"
myimages[3]="../../Images/AboutImages/desmoinesc2-medium.jpg"
myimages[4]="../../Images/AboutImages/ml_e_entry-medium.jpg"
myimages[5]="../../Images/AboutImages/sciencebuilding_2-medium.jpg"
myimages[6]="../../Images/AboutImages/sciencebuildingdetail-medium.jpg"
myimages[7]="../../Images/AboutImages/wenctr765-medium.jpg"
*/
//specify alt text below.
var myimagesalt = new Array()

myimagesalt[1] = "Photos of the CWU campus, the science building, and Lind Hall."
myimagesalt[2] = "Photos of CWU Desmoines, CWU Moses Lake, the science building, and the CWU Wenatchee campus."
/*
myimagesalt[1]="Aerial photo of the Ellensburg CWU campus"
myimagesalt[2]="Photo of the East entry of CWU Lind Hall"
myimagesalt[3]="Photo of the CWU Desmoines campus with students"
myimagesalt[4]="Photo of the CWU Moses Lake campus with students"
myimagesalt[5]="Aerial photo of the CWU Science Building with snow"
myimagesalt[6]="Photo of the CWU Science building on the Ellensburg Campus"
myimagesalt[7]="Photo of the CWU Wenatchee campus with students" 
*/
var ry = Math.floor(Math.random()*myimages.length)
if (ry == 0)
ry = 1;
document.write('<img src="'+myimages[ry]+'" alt="'+myimagesalt[ry]+'" border=0 />')
}