<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
var theTexts = new Array()
var theLinks = new Array()
// To add more image files, continue with the
// pattern below, adding to the array.



theImages[0] = 'main/45thAnniDinSpec(03)01.jpg'
theTexts[0] = 'STC 45th Anniversary Dinner Photos Collection, 22, Nov. 2003.'
theLinks[0] = 'shungtakian/album/album_45thAnniversary/45thAnniversary_01.htm'
theImages[1] = 'main/44650022.jpg'
theTexts[1] = 'Shungtakians Reunion 2002'
theLinks[1] = 'shungtakian/album/album_Reunion%20Dinner(02)/Reunion%20Dinner(02).htm'
theImages[2] = 'main/CB_PeterLam004.jpg'
theTexts[2] = 'Talk by Mr. Peter Lam Yuk Wah'
theLinks[2] = 'shungtakian/album/album_Talk%20Peter%20Lam/Talk%20Peter%20Lam.htm'
theImages[3] = 'main/FireDemo99_SimonLo3.jpg'
theTexts[3] = 'Fire-drill demo - Mr. Simon Lo'
theLinks[3] = 'shungtakian/album/album_Fire-drill/Fire-drill.htm'
theImages[4] = 'main/InterviewGordonFung(o3)04.jpg'
theTexts[4] = 'Interview with Mr. Gordon Fung'
theLinks[4] = 'shungtakian/album/album_interviewGordonFung/interviewgordonfung.htm'
theImages[5] = 'main/OldCampus002.jpg'
theTexts[5] = 'Old Campus'
theLinks[5] = 'shungtakian/album/album_Old%20Campus/Old%20Campus.htm'
theImages[6] = 'main/Outstanding(04)JulieLok.jpg'
theTexts[6] = 'Outstanding Students Awards(04) JulieLok'
theLinks[6] = 'main/Outstanding(04)JulieLok.jpg'



// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'"><br><a href="'+theLinks[whichImage]+'">'+theTexts[whichImage]+'</a>');
}

//  End -->