/*==================================================*
TownHouse slideshow setup 
 
 
 *==================================================*/
//Townhome Slideshow Setup

// Create the slideshow object
ssTownHome = new slideshow("ssTownHome");

// Set the delay between slides, 1000 = 1 sec
 ssTownHome.timeout = 3500;
 ssTownHome.prefetch = 1;

// By default the slideshow will repeat when you get to the end.
// ss.repeat = false;
//"wp AUG 03 001.jpg"
// Create the slides and add them to the slideshow.

addHome("Master Bedroom","/2350SP/images/Master_Bed.JPG" );

addHome("Dining Area","/2350SP/images/Dining_area.JPG");

addHome("Kitchen", "/2350SP/images/Kitchen.JPG");

addHome("Living Room","/2350SP/images/Living_Room.JPG" );

addHome("Pool","/2350SP/images/View_of_Pool_from_Living_Room.JPG");

addHome("Downstairs Bedroom", "/2350SP/images/Downstairs_Bedroom.JPG");

addHome("Downstairs Bedroom 2", "/2350SP/images/Downstairs_Bedroom_2.JPG");

addHome("Computer Center","/2350SP/images/Computer_Center.jpg");

addHome("Entertainment Center","/2350SP/images/EntertainmentCenter.jpg");

addHome("Bathroom","/2350SP/images/Bathroom.jpg");

addHome("Bathroom 2","/2350SP/images/Bathroom2.jpg");

addHome("Back Of Townhome","/2350SP/images/BackOfTownhome.jpg");

addHome("Back Of Townhome","/2350SP/images/BackOfTownhome2.jpg");

addHome("2nd Upstairs Bedroom","/2350SP/images/2nd Upstairs Bedroom.JPG");

for (var i=0; i < ssTownHome.slides.length; i++) {

  s = ssTownHome.slides[i];
  s.target = "ss_popup";
  s.attr = "width=320,height=420,resizable=yes,scrollbars=yes";

}

function addHome(txtTitle, imageLocation){
	s = new slide();
	s.src =  imageLocation;
	s.link = imageLocation;
	s.title = txtTitle;
	s.text = txtTitle;
	ssTownHome.add_slide(s);

}


