/* Modify to add and remove photos. */

var photoData = 

	// This array contains all gallery and picture info.
	
	new Array(

		// Each of these arrays is a gallery.
		
	new Array('portraits', new Array(
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			''))

, // <- Don't forget this comma between galleries!

		new Array('buildings', new Array(
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			''))

, // <- Don't forget this comma between galleries!		

		new Array('old school', new Array(
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			''))

, // <- Don't forget this comma between galleries!	

	new Array('b&w', new Array(
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			''))

, // <- Don't forget this comma between galleries!		

	new Array('sculpture', new Array(
			'',
			'',
			'',
			'',
			'',
			'',
			''))

, // <- Don't forget this comma between galleries!	


		new Array('objects', new Array(
			'',
			'',
			'',
			'',
			'',
			'',
			''))

, // <- Don't forget this comma between galleries!		

		new Array('environments', new Array(
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			''))

, // <- Don't forget this comma between galleries!

		new Array('dia de los muertos', new Array(
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			''))
		
, // <- Don't forget this comma between galleries!
		

		new Array('hong kong', new Array(
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			''))
		
, // <- Don't forget this comma between galleries!

		new Array('shredwed', new Array(
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			''))
		
, // <- Don't forget this comma between galleries!			

		new Array('wall projects', new Array(
			'',
			''))


	);
