

var index = 1;

var myPhotos=new Array();

myPhotos[2]="#222 url(slideshow/md_20080904manchester0517.jpg) center 60% no-repeat";
myPhotos[3]="#222 url(slideshow/md_20090409evan1258.jpg) center 30% no-repeat";
myPhotos[4]="#222 url(slideshow/slide_SouthernStratification_CivilRightsMemorialExhibit2.jpg) center no-repeat";
myPhotos[5]="#222 url(slideshow/sm_AdamLernerSOL_2.jpg) center no-repeat";
myPhotos[6]="#222 url(slideshow/md_20090421mia3462.jpg) center 40% no-repeat";
myPhotos[7]="#222 url(slideshow/md_20080416jermyn2630.jpg) center 30% no-repeat";
myPhotos[8]="#222 url(slideshow/md_20080924diversity0680.jpg) center 30% no-repeat";
myPhotos[9]="#222 url(slideshow/md_20081108chapel1281.jpg) center 60% no-repeat";
myPhotos[10]="#222 url(slideshow/md_20081205thomas8237.jpg) center 40% no-repeat";
myPhotos[11]="#222 url(slideshow/md_20090415afton9102.jpg) center 30% no-repeat";
myPhotos[12]="#222 url(slideshow/md_20090224devin4917.jpg) center 58% no-repeat";
myPhotos[13]="#222 url(slideshow/md_20090317jason5996.jpg) center 55% no-repeat";
myPhotos[14]="#222 url(slideshow/md_20090323brianna7144.jpg) center 40% no-repeat";
myPhotos[15]="#222 url(slideshow/523670404_6149d56d6a.jpg) center -80px no-repeat";
myPhotos[16]="#222 url(slideshow/slide_SouthernStratification_CivilRightsMemorialExhibit.jpg) center no-repeat";
myPhotos[17]="#222 url(slideshow/537742104_e9ba6bde6c.jpg) center 0px no-repeat";
myPhotos[18]="#222 url(slideshow/md_20090417ariane2283.jpg) center 10% no-repeat";

//myPhotos[1]="#222 url(slideshow/523707891_dbc1583100.jpg) center -80px no-repeat";
//myPhotos[4]="#222 url(slideshow/532441117_cdc559612c.jpg) center 0px no-repeat";
//myPhotos[6]="#222 url(slideshow/537743852_f6c1deb378.jpg) center 70% no-repeat";
//myPhotos[7]="#222 url(slideshow/md_20090421dodman3153.jpg) center 55% no-repeat";
// myPhotos[7]="#222 url(slideshow/537743876_e53341e536.jpg) center 60% no-repeat";
//myPhotos[8]="#222 url(slideshow/md_20071017graham0956.jpg) center 25% no-repeat";
//myPhotos[11]="#222 url(slideshow/md_20090128ying2729.jpg) center 30% no-repeat";
//myPhotos[20]="#222 url(slideshow/521018489_500de8a74d.jpg) center -80px no-repeat";

$(document).ready(function() {

	setTimeout('swapPhoto()',2000);
//	swapPhoto();
});


function swapPhoto(){
	if(index >= myPhotos.length){
		index = 1;
	}

//	alert(index);
//	$('#photo_strip').html(myPhotos[index]);
	$('#photo_strip').css('background', myPhotos[index]);
	setTimeout('swapPhoto()',3500);
	index++;
	
}
