function changePict()
{

var homephotos = new Array("home23", "home31");
var homeprices= new Array("$299,900", "$435,000");

var homelinks = new Array(
	"http://www.southernutahhousefinder.com/properties/693_Pinion_Hills/123start.html",
	"http://www.southernutahhousefinder.com/properties/7893NSapphireDr/123start.html"
);

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

featuredcaptions[0]= "Quality built custom home in Dammeron Valley. This home has been well taken care of and is move-in ready. Room for you and your horses with .96 acres of land. 2,552 sq. ft. 3 Bedrooms. 2 Bathrooms.";
featuredcaptions[1]= "This single owner home in Diamond Valley sits on almost an acre of land. Bring your horses and enjoy an 'out of town' feel while still being close to town.";

/*(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];
}