//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(10);

images[0] = "<a href = './fp-Jeld-Wen-Field.asp'><img border='0' src='Images/hp-fp-PGE.jpg' alt=''  ></a>";

images[1] = "<a href = './fp-PSU-Lincoln-Hall.asp'><img border='0' src='Images/hp-fp-PSU.jpg' alt=''></a>";

images[2] = "<a href = './fp-South-Hill-Data-Center.asp'><img border='0' src='Images/hp-fp-SouthHill.jpg' alt=''></a>";

images[3] = "<a href = './fp-LCC.asp'><img border='0' src='Images/hp-fp-LCC.jpg' alt=''></a>";

images[4] = "<a href = './fp-Camp-Withycombe.asp'><img border='0' src='Images/hp-fp-CampW.jpg' alt=''></a>";

images[5] = "<a href = './fp-Seahawks-Virginia-Mason-Athletic-Center.asp'><img border='0' src='Images/hp-fp-VMAC.jpg' alt=''></a>";

images[6] = "<a href = './fp-EvergreenSpace.asp'><img border='0' src='Images/hp-fp-EvergreenSpace.jpg' alt=''></a>";

images[7] = "<a href = './fp-WayneLMorse.asp'><img border='0' src='Images/hp-fp-FedCourtHouse.jpg' alt=''></a>";

images[8] = "<a href = './fp-Mirabella-Portland.asp'><img border='0' src='Images/hp-fp-MirabellaPDX.jpg' alt=''></a>";

images[9] = "<a href = './fp-Oregon-State-Hospital.asp'><img border='0' src='Images/hp-fp-OregonStateHospital.jpg' alt=''></a>";




index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done



