/*
	SLIDELIST

	This file defines the lists of pictures in the slideshow
	and an optional link and caption for each one.

	JavaScript Slideshow by Patrick Fitzgerald
	Get complete script and documentation at
	http://slideshow.barelyfitz.com/
*/


// ***** Define slideshow parameters ******

ss = new slideshow("ss");  // create the slideshow object
ss.prefetch = 5;   // limit number of images that are prefetched, default = all (-1), current (0)
ss.repeat = true;  // default, set false to stop after last slide, true to loop

// ***** List the slides and add them to the slideshow
// new slide ("src", "link", "caption", "window", "attr") ONLY src is required

ss.add_slide(new slide("/imglib/slideshow_title_500.png", "", "")); // title slide for the show

// ********* ADD SLIDES HERE ************
ss.add_slide(new slide("/chronicles/2010/03/18_move/grid1.png", "", "Mountain View development tucked up against the mountains above Mission Lakes Country Club"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/final2_500.jpg", "", "The top two finalists, almost next door to each other on the same street. Almost the same size lots but the house on the right occupies much more of the lot than the house on the corner"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/front_500.jpg", "", "Front. Desert landscaping and irrigation already in place"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/fireplace_500.jpg", "", "Diagonally across the great room from the front entrance. Gas fireplace. Built-in niche for the wide-screen HD TV that I don't have."));
ss.add_slide(new slide("/chronicles/2010/03/18_move/kitchen_500.jpg", "", "The kitchen end of the great room with window over the sink. Entrance to the left"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/pantry_500.jpg", "", "Pantry in the corner, space for refrigerator to its left, center island"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/hall_375v.jpg", "", "Hallway to bedrooms is straight ahead, front entrance to the right"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/mbedroom_500.jpg", "", "Master bedroom, big sliders for direct access to back yard"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/mbath_500.jpg", "", "Master bathroom"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/mshower_500.jpg", "", "It has a sit-down shower, perfect for a geezer"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/msinks_500.jpg", "", "Double vanity in the master bathroom"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/mtoilet_500.jpg", "", "Toilet is in a separate room"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/gbedroom_375v.jpg", "", "One of the two guest bedrooms"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/gvanity_375v.jpg", "", "Vanity in the guest bathroom &mdash; you'd think they could have cleaned the mirror!"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/back_west2_500.jpg", "", "Back yard looking west. Master bedroom on the right with its own door to the yard"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/back_east_500.jpg", "", "At the other end of the back yard looking east. Sliders into the great room are just to the left"));
ss.add_slide(new slide("/chronicles/2010/03/18_move/back_southwest_500.jpg", "", "The view southwest with the snow-covered top of Mt San Jacinto visible over the roofs"));

