// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 5000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 10;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this


// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = 'random/martin_r.jpg'
Picture[2]  = 'random/billig_r.jpg';
Picture[3]  = 'random/bird_r.jpg';
Picture[4]  = 'random/bluzer_r.jpg';
Picture[5]  = 'random/bowles_r.jpg';
Picture[6]  = 'random/campagnella_r.jpg';
Picture[7]  = 'random/caruthers_r.jpg';
Picture[8]  = 'random/clark_r.jpg';
Picture[9]  = 'random/fischell_r.jpg';
Picture[10] = 'random/hinman_crop2.jpg';
Picture[11]  = 'random/irwin_r.jpg';
Picture[12]  = 'random/kim_r.jpg';
Picture[13]  = 'random/krizek_r.jpg';
Picture[14]  = 'random/laroia_r.jpg';
Picture[15]  = 'random/laurer_r.jpg';
Picture[16]  = 'random/lin_r.jpg';
Picture[17]  = 'random/miller_r.jpg';
Picture[18]  = 'random/bezos_fernandez_r.jpg' ;
Picture[19] = 'random/pati_r.jpg';
Picture[20]  = 'random/plummer_r.jpg';
Picture[21] = 'random/radermacher_r.jpg';
Picture[22] = 'random/robeson_r.jpg';
Picture[23] = 'random/severinsky_r.jpg';
Picture[24] = 'random/harrysmith_r.jpg';
Picture[25] = 'random/weber_r.jpg';
Picture[26] = 'random/wheathley_r.jpg';
Picture[27] = 'random/younger_r.jpg';

// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "<a href='inductees/martin.html'>Glenn L. Martin: Automatic Parachute</a>";
Caption[2]  = "<a href='inductees/billig.html'>Frederick S. Billig: Supersonic and Hypersonic Combustion</a>";
Caption[3]  = "<a href='inductees/bird.html'>R. Byron Bird: Transport Phenomena in Polymeric Fluids</a>";
Caption[4]  = "<a href='inductees/bluzer.html'>Nathan Bluzer: Infrared, Visible and Multispectral Sensors</a>";
Caption[5]  = "<a href='inductees/bowles.html'>Romald E. Bowles: Fluidics and Fluid Mechanics</a>";
Caption[6]  = "<a href='inductees/campanella.html'>Joseph Campanella: Digital Satellite Communications</a>";
Caption[7]  = "<a href='inductees/caruthers.html'>Robert S. Caruthers: Multiplexing and Long Distance Telephony</a>";
Caption[8]  = "<a href='inductees/clark.html'>James A. Clark: Optical Scientific Products</a>";
Caption[9]  = "<a href='inductees/fischell.html'>Robert E. Fischell: Biomedical Devices</a>";
Caption[10] = "<a href='inductees/hinman.html'>Brian L. Hinman: Telecommunications Technologies and Entrepreneurship</a>";
Caption[11]  = "<a href='inductees/irwin.html'>George R. Irwin: Fracture Mechanics</a>";
Caption[12]  = "<a href='inductees/kim.html'>Jeong H. Kim: Asynchronous Transfer Mode Switch for Wireless Communications</a>";
Caption[13]  = "<a href='inductees/krizek.html'>Raymond J. Krizek: Geotechnical Engineering and Slurry Mechanics</a>";
Caption[14]  = "<a href='inductees/laroia.html'>Rajiv Laroia: Precoding and constellation shaping methods for voiceband telephone line modems</a>";
Caption[15]  = "<a href='inductees/laurer.html'>George J. Laurer: Universal Product Code</a>";
Caption[16]  = "<a href='inductees/lin.html'>Hung C. Lin: Quasi-Complementary Amplifier";
Caption[17]  = "<a href='inductees/miller_plummer.html'>Edward A. Miller: Satellite Surveillance</a>";
Caption[18]  = "<a href='inductees/bezo_fernandez.html'>Angel Bezos, Emilio Fernandez: Train Telemetry and Event Recording</a>";
Caption[19]  = "<a href='inductees/pati.html'>Yagyensh C. (Buno) Pati: Phase-Shift Lithography</a>";
Caption[20]  = "<a href='inductees/miller_plummer.html'>James W. Plummer: Satellite Surveillance</a>";
Caption[21] = "<a href='inductees/radermacher.html'>Reinhard Radermacher: Environmental and Energy System Applications</a>";
Caption[22]  = "<a href='inductees/robeson.html'>Lloyd M. Robeson: Polymer Blends, Copolymers, Membranes, Adhesives, Plastics</a>";
Caption[23]  = "<a href='inductees/severinsky.html'>Alex J. Severinsky: Hyperdrive Hybrid Power System</a>";
Caption[24]  = "<a href='inductees/smith.html'>Harry B. Smith: Pulse Doppler Radar</a>";
Caption[25]  = "<a href='inductees/weber.html'>Joseph Weber: Coherent Microwave</a>";
Caption[26]  = "<a href='inductees/wheatley.html'>Frank Wheatley, Jr.: Insulated Gate Bipolar Transistor</a>";
Caption[27]  = "<a href='inductees/younger.html'>John E. Younger: Retractable Landing Gear</a>";



// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}





