// Set the slideshow speed (bittyseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (seconds)
var CrossFadeDuration = 2;

var Picture = new Array(); 
var Caption = new Array(); 
var showHot = false;       

// setup the image array...

Picture[1]  = 'images/photos/P1010179.jpg';
Picture[2]  = 'images/photos/P1010180.jpg';
Picture[3]  = 'images/photos/P1010190.jpg';
Picture[4]  = 'images/photos/P1010204.jpg';
Picture[5]  = 'images/photos/P1010217.jpg';
Picture[6]  = 'images/photos/P1010221.jpg';
Picture[7]  = 'images/photos/P1010222.jpg';
Picture[8]  = 'images/photos/P1010231.jpg';
Picture[9]  = 'images/photos/P1010238.jpg';
Picture[10]  = 'images/photos/P1010137.jpg';
Picture[11]  = 'images/photos/P1010143.jpg';
Picture[12]  = 'images/photos/P1010155.jpg';
Picture[13]  = 'images/photos/P1010164.jpg';
Picture[14]  = 'images/photos/P1010166.jpg';
Picture[15]  = 'images/photos/P1010171.jpg';
Picture[16]  = 'images/photos/P1010176.jpg';
Picture[17]  = 'images/photos/P1010051.jpg';
Picture[18]  = 'images/photos/P1010053.jpg';
Picture[19]  = 'images/photos/P1010057.jpg';
Picture[20]  = 'images/photos/P1010061.jpg';
Picture[21]  = 'images/photos/P1010062.jpg';
Picture[22]  = 'images/photos/P1010074.jpg';
Picture[23]  = 'images/photos/P1010076.jpg';
Picture[24]  = 'images/photos/P1010081.jpg';
Picture[25]  = 'images/photos/P1010084.jpg';
Picture[26]  = 'images/photos/P1010087.jpg';
Picture[27]  = 'images/photos/P1010124.jpg';
Picture[28]  = 'images/photos/P1010130.jpg';
Picture[29]  = 'images/photos/P1010140.jpg';
Picture[30]  = 'images/photos/P1010143b.jpg';
Picture[31]  = 'images/photos/P1010145.jpg';

// setup captions array...

Caption[1]  = "Founder of Ming Chuan and mother of current president, Dr. Lee.";
Caption[2]  = "The design building on the Taoyuan campus.";
Caption[3]  = "The general view of Taoyuan campus";
Caption[4]  = "One of the buildings on the Taoyuan campus.";
Caption[5]  = "Betty from PR, Debby from International College, and me in front of Yinggie Ceramics Museum. Celebration of 2004 ";
Caption[6]  = "An old street in Ynggie with pottery shops where Carol purchased tea set.";
Caption[7]  = "Local children making pottery.";
Caption[8]  = "The famous Taoist temple near Yinggie.";
Caption[9]  = "Monks massaging aches in front of the Taoist Temple.";
Caption[10]  = "The amazing view from my office on Taipei campus of Ming Chuan.";
Caption[11]  = "Dr. Yung Sheng Wu, Dean of the Law School and me in front of the famous palace museum. ";
Caption[12]  = "The Chinese garden outside the palace museum.  It is foggy and rather rainy in case you, my viewer, think the photography is bad.";
Caption[13]  = "Cherry Chen and her colleague, Chantel, in the University Extension program and from People to People, and a driver, Dr. Lou, at a tea restaurant outside Taipei. The typhoon is approaching and it's raining again";
Caption[14]  = "Tea service. I'm going on Saturday with Debbie, People to People on the Taoyuan campus to the town where this pottery is made.  I might buy a tea set and invite you, my readers, to tea - Chinese style!";
Caption[15]  = "The foggy view from top of mountain outside Taipei.";
Caption[16]  = "Typhoon arrives. This is view from my room in Taipei.  I spent Monday, October 25th, in my room. The school and the government were closed because of Typhoon Nock Ten. It was a big one, apparently unusual at this time of year and also unusual because it was two storms combined.  I can only watch the news in English from 6 to 7 a.m., but Dr. Emily Chow and LeAnn both called me about the storm and told me to stay in Taipei and not come to Taoyuan campus.";
Caption[17]  = "The view of Danshui from Tamkang University campus.";
Caption[18]  = "A palace-style classrooms on Tamkang campus.";
Caption[19]  = "A dog in front of what students call egg roll.";
Caption[20]  = "The only maritime museum in Taiwan.";
Caption[21]  = "Airplanes outside maritime museum.";
Caption[22]  = "The garden looking to the town of Danshui.";
Caption[23]  = " A typical palace-style classroom.";
Caption[24]  = "The gym that includes a swimming pool.";
Caption[25]  = "A group of freshman students taking a course in keeping the campus clean.";
Caption[26]  = "The only Maritime Museum in Taiwan.";
Caption[27]  = "This is the beginning of the 54th birthday celebration for Tamkang University.";
Caption[28]  = "The founder of the university and his daughter, who is currently the President of Tamkang University.";
Caption[29]  = "The dedication of the new College of Liberal Arts building.";
Caption[30]  = "The Tamkang University founder speaking at the dedication.";
Caption[31]  = "An outside scene from the dedication.";

var tss;
var iss;
var jss = 0;
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 control(how){
if (showHot){
if (how=="H") jss = 1;
if (how=="F") jss = jss + 1;
if (how=="B") jss = jss - 1;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
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();
}}


