<!--
var imagePath="";

function setImagePath(path){
	imagePath=path;
}

function getRandomImage(){
	var imageFileName=new Array();
	var imageCaption=new Array()

	imageFileName[0]="CompClubTrip1.jpg";
	imageCaption[0]="CS Computer Club on a field trip";

	imageFileName[1]="CompClubTrip2.jpg";
	imageCaption[1]="CS Computer Club on a trip to Apple";

	imageFileName[2]="CompClubTrip3.jpg";
	imageCaption[2]="CS Computer Club on a trip to Apple";

	imageFileName[3]="CTIEEEmeeting1.jpg";
	imageCaption[3]="Meeting of CT IEEE Computer Society in a departmental lab";

	imageFileName[4]="CTIEEEmeeting2.jpg";
	imageCaption[4]="Meeting of CT IEEE Computer Society in a departmental lab";

	imageFileName[5]="Fatemeh1.jpg";
	imageCaption[5]="Dr. Abdollahzadeh teaches a class";

	imageFileName[6]="Robotics1.jpg";
	imageCaption[6]="Having fun in a robotics class";

	imageFileName[7]="Robotics2.jpg";
	imageCaption[7]="Having fun in a robotics class";

	imageFileName[8]="Robotics3.jpg";
	imageCaption[8]="Having fun in a robotics class";

	imageFileName[9]="Seminar1.jpg";
	imageCaption[9]="Research seminar at CS department";

	imageFileName[10]="Students1.jpg";
	imageCaption[10]="Students in a CS class";

	imageFileName[11]="Robotics4.jpg";	
	imageCaption[11]="Having fun in a robotics class";

	imageFileName[12]="EVoting1.jpg";	
	imageCaption[12]="Drs. O'Connell and Unger (Columbia U) at E-Voting seminar";
		
	imageFileName[13]="Programming1.jpg";	
	imageCaption[13]="Fun with programming in CS lab";

	imageFileName[14]="Robotics5.jpg";	
	imageCaption[14]="Contemplating the puzzle in a robotics class";

	imageFileName[15]="ACM-SRC-09-1.jpg";	
	imageCaption[15]="At ACM student research competition (Aquarium @ Chattanooga, TN)";

	imageFileName[16]="ACM-SRC-09-2.jpg";	
	imageCaption[16]="At ACM student research competition (Aquarium @ Chattanooga, TN)";

	imageFileName[17]="ACM-SRC-09-3.jpg";	
	imageCaption[17]="Mike Gibeau presents his work at ACM student research competition in Chattanooga, TN)";

	var imgIndex=Math.floor(Math.random()*imageFileName.length);

	document.write('<img border="1" src=' + imagePath + 'images/randomImages/' + imageFileName[imgIndex] + 
				   ' width="256" height="192"><p>' + imageCaption[imgIndex] + '</p>'); 
}
//-->