function changePict()
{

var homephotos = new Array("home16", "home15", "home14", "home28", "home18");
var homeprices= new Array("$259,900", "$259,900", "$259,900", "$313,000", "$259,000");

var homelinks = new Array(
	"http://www.southernutahhousefinder.com/properties/DammeronValleyHeights3/123start.html",
	"http://www.southernutahhousefinder.com/properties/DammeronValleyHeights2/123start.html",
	"http://www.southernutahhousefinder.com/properties/DammeronValleyHeights1/123start.html",
	"http://www.southernutahhousefinder.com/properties/313DammeronValleyDrW/123start.html",
	"http://www.southernutahhousefinder.com/properties/1080CoyoteWay/123start.html"
);

var featuredcaptions = new Array(homephotos.length-1);

featuredcaptions[0]= "Beautiful Dammeron Valley lot with lava rock outcroppings. This lot comes with amazing views of the valley and surrounding mountains and has rooms for your horses.";
featuredcaptions[1]= "Build your dream home on this incredible 5 acre view lot in Dammeron Valley. If you want room for your horses and views that won't be blocked this is the place for you.";
featuredcaptions[2]= "Great hillside view lot in Dammeron Valley with a great view of the valley. This secluded lot comes with plenty of room for you and your horses.";
featuredcaptions[3]= "Completely remodeled home located in Dammeron Valley. Bring your horses and enjoy seclusion on 5 acres.";
featuredcaptions[4]= "Great Dammeron Valley home comes with a geo-thermal heat pump, indoor hot tub, and a basement with tons of storage. Zoned for horses.";


/*(Math.random() * max-min+1 +min) */
	var i = Math.floor(Math.random() * homephotos.length);
	document.slide.src=homephotos[i]+".jpg";
	document.slide.alt="Featured Property";
	document.slide.title="Featured Property";
	document.getElementById("captionprice").innerHTML= homeprices[i];
	document.getElementById("captionlink").href= homelinks[i];
	document.getElementById("caption").innerHTML =featuredcaptions[i];
}
