<!--
// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 4500;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 2;

var Picture = new Array();
var Caption = new Array();

//Pictures should be 320px wide for best viewing
Picture[0]  = 'Random/cape.jpg';
Picture[1]  = 'Random/button.jpg';
Picture[2]  = 'Random/cali_1.jpg';
Picture[3]  = 'Random/cali_2.jpg';
Picture[4]  = 'Random/shawn.jpg';
Picture[5]  = 'Random/singing_to_meg.jpg';
Picture[6]  = 'Random/group.jpg';
Picture[7]  = 'Random/condom.jpg';
Picture[8]  = 'Random/newark_2.jpg';
Picture[9]  = 'Random/genos.jpg';
Picture[10]  = 'Random/hockey_game.jpg';
Picture[11] = 'Random/ropes_course.jpg';
Picture[12] = 'Random/newark_1.jpg';
Picture[13] = 'Random/party_time_sm.jpg';
Picture[14] = 'Random/sheetz.jpg';
Picture[15] = 'Random/plum_tree.jpg';

Caption[0]  = "To the Clocktower!<br /><b>Save the Clocktower VII</b> &nbsp; | &nbsp;  11.5.05";
Caption[1]  = "On the button at UPenn<br /><b>Fall Tour '05</b> &nbsp; | &nbsp; 10.9.05";
Caption[2]  = "At the Santa Monica Pier<br /><b>Spring Tour '05</b> &nbsp; | &nbsp; 3.20.05";
Caption[3]  = "Hanging out at Disneyland<br /><b>Spring Tour '05</b> &nbsp; | &nbsp; 3.22.05";
Caption[4]  = "At a retirement party, of all places<br /><b>Misc 2007-2008</b> &nbsp; | &nbsp; 8.22.07";
Caption[5]  = "Why do you build me up, buttercup?<br /><b>Senior Archsing '06</b> &nbsp; | &nbsp; 5.7.06";
Caption[6]  = "The classic Last Call strike-a-pose<br /><b>Fall Tour '06</b> &nbsp; | &nbsp; 10.6.06";
Caption[7]  = "Serenading the crowd at Condom Kingdom<br /><b>Fall Tour '05</b> &nbsp; | &nbsp; 10.9.05";
Caption[8]  = "Gotta love Indian food...<br /><b>Spring Tour '06</b> &nbsp; | &nbsp; 3.10.06";
Caption[9]  = "Gettin' low at Geno's Cheese-Steaks<br /><b>Fall Tour '05</b> &nbsp; | &nbsp; 10.9.05";
Caption[10]  = "Singing Red at the Wachovia Center<br /><b>Fall Tour '05</b> &nbsp; | &nbsp; 0.9.05";
Caption[11] = "A cappella group or flag football team?<br /><b>Misc 2005-2006</b> &nbsp; | &nbsp; 9.7.05";
Caption[12] = "Post-gig at Newark Academy<br /><b>Spring Tour '06</b> &nbsp; | &nbsp; 3.10.06";
Caption[13] = "Dancing at Georgetown<br /><b>Fall Tour '06</b> &nbsp; | &nbsp; 10.6.06";
Caption[14] = "Impromptu stops at Sheetz<br /><b>Fall Tour '06</b> &nbsp; | &nbsp; 10.10.06";
Caption[15] = "You say it's your birthday??<br /><b>Misc 2007-2008</b> &nbsp; | &nbsp; 2.16.07";

var tss;
var iss;
var jss = 0;
var jssnew = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 0; 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();
		
		do{
			 jssnew = Math.floor(Math.random()*(pss+1));
		  }
				while (jssnew == jss)
		jss=jssnew;
  tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
-->