// This script populates the photo structure created in photolist.js
// Syntax for adding a new picture is listName.addPhoto( 'photoname', 'photocaption'  )
// Apostrophe is &#39;

function getPhotos( listName ) {

	listName.addPhoto( 'front_34', 'Front of the house, with only dirt for landscaping. The porch was originally uncovered, and that aluminum horror is long gone. The roof was actually painted green by the previous owner in an attempt to seal the leaks.' );
	listName.addPhoto( 'front_full', 'Front view of the house from the street. The house sits on a residential street north of downtown, in what was once a tony proto-suburb of Phoenix.' );
	listName.addPhoto( 'living_rm', 'Living room view toward the fireplace. During the restoration, the fireplace was re-rocked.' );
	listName.addPhoto( 'dining_rm', 'View from the living room into the dining room. The paint looks randomly chosen throughout the house. When the house was sold, the tenants moved out hastily, leaving many things behind.' );
	listName.addPhoto( 'kitchen_fromdoor', 'Kitchen seen from the dining room. The cabinets have been restored, stripped to bare wood, and all panels replaced with glass.' );
	listName.addPhoto( 'kitchen_side', 'Side cabinets in the kitchen. The tall cabinet is vented to the basement and attic in an icebox/cooler arrangement.' );
	listName.addPhoto( 'kitchen_sink', 'The original sink was saved, but the original taxicab yellow tiles were not salvaged.' );
	listName.addPhoto( 'bedroom_front', 'The front bedroom. Generally filthy & disgusting.' );
	listName.addPhoto( 'bedroom_front2', 'Some of the original double-hung windows were saved, but many could not be restored. They were replaced with reproductions which followed the original design.' );
	listName.addPhoto( 'hall', 'Main hall. The floors and walls were severely damaged and abused.' );
	listName.addPhoto( 'bath_front', 'The original sink was already gone, but the tub and toilet are original. The original hex tile on the floor was in reasonable condition and was left as is.' );
	listName.addPhoto( 'bath_front2', 'The bathroom window was replaced with glass block and the shower re-tiled.' );
	listName.addPhoto( 'office', 'The original rear bedroom, used now as an office. Windows on two sides look out over the back yard.' );
	listName.addPhoto( 'office2', 'Most of the windows in the house were broken, and many were boarded up. The boarded up windows were finally the undoing of the owner, who was cited because of the lack of fire escapes.' );
	listName.addPhoto( 'bedroom_back', 'The back room was originally a screened sleeping porch, which was later enclosed.' );
	listName.addPhoto( 'bedroom_back2', 'The original windows in the back room were not saved.' );
	listName.addPhoto( 'bath_back', 'The rear bath was full, with sink, shower, and toilet crammed into a closet-like space.' );
	listName.addPhoto( 'bath_back2', 'Pieces of the wall and tile were missing. The bathroom required extensive reconstruction.' );
	listName.addPhoto( 'garage', 'The original garage in the back was condemned, and with a pronounced lean to the left.' );
	listName.addPhoto( 'window1', 'Windows in the back of the house.' );
	listName.addPhoto( 'window2', 'Additional shots of the exterior windows.' );
			
	return listName;
}


