// Picture scripts. getPics loads up the picture names. In order to
// work properly, there must be a picture called 'xxx.jpg' and a small,
// thumbnail sized pic (50x50) called xxxsm.jpg. The captions are loaded
// separately.

// Apostrophe is &#39;

function getPics() {
	
	PICS = new Array();

	count = 0;

	PICS[count++] = 'jasonbrian';
	PICS[count++] = 'johnandjason';	
	PICS[count++] = 'johnandjason2';	
	PICS[count++] = 'johnhandjason';	
	PICS[count++] = 'larslarry';	
	PICS[count++] = 'lief';	
	PICS[count++] = 'markbrad';	
	PICS[count++] = 'mandc';	
	PICS[count++] = 'matt';	
	PICS[count++] = 'mikel';	
	PICS[count++] = 'mikelandfriends';	
	PICS[count++] = 'nicechest';	
	PICS[count++] = 'sunglasses';	
	PICS[count++] = 'alien';
	PICS[count++] = 'niceass';	
	PICS[count++] = 'tattoo';	
	PICS[count++] = 'wingnuts';	
//	PICS[count++] = 'very_la';	

	return PICS;
}

function getCaptions( PICS ) {	

	CAPTIONS = new Array();

	count = 0;

	CAPTIONS [PICS[count++]] = 'Almost immediately after arriving, we ran into Jason and Brian. Both were having good hair days.';
	CAPTIONS [PICS[count++]] = 'A picture of us at the end of the fair. We were tired and slightly spun, but having a great time.';
	CAPTIONS [PICS[count++]] = 'Us again, trying to look tough.';
	CAPTIONS [PICS[count++]] = 'John H. and Jason. John is sporting his Hellball tanktop. Good PR, you know, darling.';
	CAPTIONS [PICS[count++]] = 'Lars and Larry. Latex anyone? Mmmm. Shiny.';
	CAPTIONS [PICS[count++]] = 'Lief, our favorite boy-who-dances-with-speakers, singer for Ploughhound, and Folsom coordinator. He was working working working.';
	CAPTIONS [PICS[count++]] = 'Our ever so gracious host for the weekend, Mark, and his friend Brad. You can&#39;t really tell, but Brad was channelling Frank N. Furter for the afternoon.';
	CAPTIONS [PICS[count++]] = 'Max and Carsten. Roommates with Mark and new friends. They looked like they were ready to go.';
	CAPTIONS [PICS[count++]] = 'Matt, wearing only his Folsom Street Fair 2000 sticker.';
	CAPTIONS [PICS[count++]] = 'Mike L., possibly one of the most beautiful men in San Francisco.';
	CAPTIONS [PICS[count++]] = 'Mike L. and friends.';
	CAPTIONS [PICS[count++]] = 'Now begins the random boy pictures. A cute couple we oggled extensively. They were gracious enough to pose for the camera.';
	CAPTIONS [PICS[count++]] = 'Random hot guy with sunglasses.';
	CAPTIONS [PICS[count++]] = 'This guy looks rough and fun. The tattoo on his back says Alien. Don&#39;t ask me.';
	CAPTIONS [PICS[count++]] = 'Another nice tattoo and/or nice ass.';
	CAPTIONS [PICS[count++]] = 'Another nice tattoo and/or nice ass.';
	CAPTIONS [PICS[count++]] = 'A couple of cute wingnuts.';
	CAPTIONS [PICS[count++]] = 'Very LA boys.';


	return CAPTIONS;
	
}
