// JavaScript Document// note additions or modifications to blurb/image/URL sets must happen to all three elements<!--function randomImage() {//init array and define imagesimgArray = new Array(	"images/babar1.jpg",          // 1 babar1	"images/babar2.jpg",         // 2 babar2	"images/svt.jpg",            // 3 svt	"images/babar3.jpg",         // 4 babar3	"images/ssrl.jpg",          // 5 ssrl	"images/star.jpg",          // 6 star	"images/tesla.jpg",         // 7 tesla	"images/aleph.jpg",          // 8 aleph	"images/protein.jpg"         // 9 protein);//init array and define blurbsblurbArray = new Array(/*1 babar1 */"BaBar detector at Stanford Linear Accelerator Center. (Photo Courtesy of Stanford Linear Accelerator Center)",/*2 babar2 */"BABAR Detector, Under Construction. (Photo Courtesy of Stanford Linear Accelerator Center)",/*3 svt */"Silicon Vertex Tracker. The SVT is the heart of the BABAR experiment at SLACóin the photo, physicists are putting the finishing touches on improvements to the detector. (Photo Courtesy of Peter Ginter)", /*4 babar3 */"Lawrence Berkeley National Laboratory physicist Natalie Roe with silicon strip detector for the BaBar experiment at the Stanford Linear Accelerator Center. (Credit: SLAC)", /*5 ssrl */"Experiment at SSRL. (Photo Courtesy of James E. Stoots)", /*6 star */"The Solenoidal Tracker at RHIC (STAR) is a detector which specializes in tracking the thousands of particles produced by each ion collision at RHIC. Weighing 1,200 tons and as large as a house, STAR is a massive detector. It is used to search for signatures of the form of matter that RHIC was designed to create: the quark-gluon plasma. It is also used to investigate the behavior of matter at high energy densities by making measurements over a large area. (Courtesy: Brookhaven National Laboratory)", /*7 tesla */"Matter meets antimatter. If an electron and a positron collide at at high speed in the TESLA accelerator, both are annihilated - i.e. they are converted into pure energy, out of which new elementary particles can arise. (Source: DESY Hamburg)",/*8 aleph */"Aleph silicon microstrip vertex detector.",/*9 protein */"Protein structure imaged by X-ray scattering at a synchotron accelerator. (Credit: SLAC)");//generate randomindex = Math.floor(Math.random() * imgArray.length);//write out imagedocument.write("<img alt='research photo' src=" + imgArray[index] + " width='270' height='200' border='0'>");document.write("<table width='100%'  bgcolor='#FBF4B6' border='0' cellspacing='0' cellpadding='5'>");document.write("<tr><td>");document.write("<p class='caption'>");document.write(blurbArray[index]);document.write("</p>");document.write("</td></tr></table>");}//-->