
// create array of Slide objects (pictures and captions)
var showTitle ='<h3 style="text-align:center;margin-top:0;">Ken Davis, MHS  	&#39;30<br />New Wall of Fame Honoree</h3>';

var mySlides=new Array();
var PicLocation = "../../Wall2010/";
mySlides[0]= new Slide(PicLocation + "WOF2010_0.jpg","Davis(left) with Doris Kearns Goodwin, Senator Nancy Landon Kassebaum," +
              "and Arthur Schlesinger, Jr. at 1997 KSU Roosevelt Symposium." +
              "<p style='text-align:center;'><i>Click buttons below for more.</i></p>",432,288);
mySlides[1]= new Slide(PicLocation + "WOF2010_2.jpg","Ed Albrandt, Ralph and Mary Ellen Titus with the Davis Wall of Fame plaque.",432,309);
mySlides[2]= new Slide(PicLocation + "WOF2010_4.jpg","Dave Fiser, along with Mike Buchanan, addresses those attending the January 5, 2010 " +
			        "Wall of Fame Induction Ceremony.",324,432);
mySlides[3]= new Slide(PicLocation + "WOF2010_5.jpg","Ralph Titus, accompanied by Mary Ellen Titus and Ed Albrandt, accepts the " +
	            "Ken Davis Wall of Fame plaque.",309,432);
mySlides[4]= new Slide(PicLocation + "WOF2010_1.jpg","Dr. Robert Shannon, USD 383 Superintendent, visits with Ralph and Mary Ellen Titus during " +
	            "the social hour prior to the induction ceremony.",432,309);
mySlides[5]= new Slide(PicLocation + "WOF2010_3.jpg","Members of the Events Committee prepare for the Wall of Fame social hour.",309,432);
mySlides[6]= new Slide(PicLocation + "WOF2010_6.jpg","",450,448);

var slideCount=mySlides.length;

function Slide(picture,caption,picWidth,picHeight) //create Slide 
{
this.picture = picture;     // path to picture;
this.picWidth = picWidth;   // display width 
this.picHeight = picHeight; // display height 
this.caption = caption;     // picture caption
}
