var x;
var banner = new Array();
banner[0]='<img border=0 hspace=2 src="/images/rotate/mslc_header1.jpg" alt="Science Fair - full of inquiry & fun!" width="235" height="180">';
banner[1]='<img border=0 hspace=2 src="/images/rotate/mslc_header2.jpg" alt="Hair-raising fun at the MSLC!" width="235" height="180">';
banner[2]='<img border=0 hspace=2 src="/images/rotate/mslc_header3.jpg" alt="Scrambler Event of Science Olympiad gets going!" width="235" height="180">';
banner[3]='<img border=0 hspace=2 src="/images/rotate/mslc_header4.jpg" alt="Electrifying fun at the MSLC" width="235" height="180">';
banner[4]='<img border=0 hspace=2 src="/images/rotate/mslc_header5.jpg" alt="Chemistry demo at the MSLC" width="235" height="180">';
banner[5]='<img border=0 hspace=2 src="/images/rotate/mslc_header6.jpg" alt="Tutors help with math & science courses" width="235" height="180">';
banner[6]='<img border=0 hspace=2 src="/images/rotate/mslc_header7.jpg" alt="Visitors to the MSLC grand opening" width="235" height="180">';
banner[7]='<img border=0 hspace=2 src="/images/rotate/mslc_header8.jpg" alt="Proudly displaying Science Fair projects" width="235" height="180">';
banner[8]='<img border=0 hspace=2 src="/images/rotate/mslc_header9.jpg" alt="Trajectory competition during Science Olympiad" width="235" height="180">';
banner[9]='<img border=0 hspace=2 src="/images/rotate/mslc_header10.jpg" alt="Preparing for the Scrambler event of Science Olympiad" width="235" height="180">';
banner[10]='<img border=0 hspace=2 src="/images/rotate/mslc_header11.jpg" alt="Science Olympiad Robo-Cross challenge" width="235" height="180">';
banner[11]='<img border=0 hspace=2 src="/images/rotate/mslc_header13.jpg" alt="More Scrambler action during Science Olympiad" width="235" height="180">';
banner[12]='<img border=0 hspace=2 src="/images/rotate/mslc_header14.jpg" alt="Rocket Math engages AFT camp students" width="235" height="180">';
banner[13]='<img border=0 hspace=2 src="/images/rotate/mslc_header15.jpg" alt="Chem lab experience during the AFT camp" width="235" height="180">';
banner[14]='<img border=0 hspace=2 src="/images/rotate/mslc_header16.jpg" alt="AFT camp students up close & personal with chemistry" width="235" height="180">';
banner[15]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - Analgesics 4.JPG" alt="AFT camps students make analgesics" width="235" height="180">';
banner[16]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - Analgesics 6.JPG" alt="Preparing analgesics during the AFT camp" width="235" height="180">';
banner[17]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - DNA prep 3.JPG" alt="Preparing DNA samples during a Crime Scene Investigation session" width="235" height="180">';
banner[18]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - Fingerprints 2.JPG" alt="Analyzing fingerprints during the AFT camp" width="235" height="180">';
banner[19]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - Geology 5.JPG" alt="Understanding rocks & minerals" width="235" height="180">';
banner[20]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - Geology 6.JPG" alt="Rock I.D. during the AFT camp" width="235" height="180">';
banner[21]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - Geology 8.JPG" alt="AFT camp students see that geology Rocks!" width="235" height="180">';
banner[22]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - Geology field trip 7.JPG" alt="Exploring the geology of Lindsay Creek" width="235" height="180">';
banner[23]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - Learning Alice 1.JPG" alt="Programming 3D animation with Alice software" width="235" height="180">';
banner[24]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - Making slime.JPG" alt="AFT camp students making slime" width="235" height="180">';
banner[25]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - Making slime 1.JPG" alt="Perfect slime preparation!" width="235" height="180">';
banner[26]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - Making slime 3.JPG" alt="Making slime during the AFT camp" width="235" height="180">';
banner[27]='<img border=0 hspace=2 src="/images/rotate/AFT 2009 - product pH 1.JPG" alt="Hands-on pH testing in a chem lab" width="235" height="180">';

var display = new Array();
display[0] = Math.floor(Math.random()*(banner.length));
display[1] = Math.floor(Math.random()*(banner.length));
display[2] = Math.floor(Math.random()*(banner.length));

if(display[1] == display[0] || display[1] == display[2])
{
   display[1]=Math.floor(Math.random()*(banner.length));
}
if(display[2] == display[0] || display[2] == display[1])
{
   display[2]=Math.floor(Math.random()*(banner.length));
}    
  
for (x in display)
{
   document.write(banner[display[x]]);
}
