// xhtml compliant cross browser javascript slideshow

	/** User variables **/
	var speed = 15; // Lower numbers yield a faster transition - must be 2 or higher
	var delay = 4;	// Number of seconds between each slide transition
	
	var myPhotos = new Array();
			myPhotos.push("images/i_2_3elevatorgarage2.jpg");
			myPhotos.push("images/i_2_1_4womaninkitchen2.jpg");
			myPhotos.push("images/i_5_1_1Navyskirtslady.jpg");
			myPhotos.push("images/i_5_6LittleBoy.jpg");
			myPhotos.push("images/i_6_0Circle.jpg");
			myPhotos.push("images/i_5_1BeardedMan.jpg");
			myPhotos.push("images/i_6_1Chairs.jpg");
	var pf = new photofader("pf","photoholder",myPhotos);
	
	var pic_titles = new Array();
			pic_titles.push("Elevator Garage, Chicago, 1936");
			pic_titles.push("A Saddler's Wife in her Kitchen, Poland, 1920s");
			pic_titles.push("Portrait of Jeanne Hebuterne, 1919");
			pic_titles.push("Butterfly Boy");
			pic_titles.push("Proun G7");
			pic_titles.push("Self-Portrait, 1903");
			pic_titles.push("Chairs");
			
	var pic_artists = new Array();
			pic_artists.push("John Gutmann");
			pic_artists.push("Alter Kacyzne");
			pic_artists.push("Amedeo Modigliani");
			pic_artists.push("Jerome Liebling");
			pic_artists.push("El Lissitzky");
			pic_artists.push("Camille Pissarro");
			pic_artists.push("Andre Kertesz");



	// html: <div id='photoholder'></div>

