	var listings = new Array();
    listings = [
		{title: "Millville", location: "Dekalb", desc: "Open light and airy floorplan, sunroom, office, 2 masters, great sitting area, wood floor, tile, screened in porch, views of the pond.", img: "dekalb"},
		{title: "Ocean View", location: "Hudson", desc: "Beautiful lot with mature trees over looking the tributaries to Whites Creek.", img: "hudson"},
		{title: "Fenwick Island", location: "Swann Estates", desc: "Opportunity to own a waterfront lot in an upscaled community just minutes from Fenwick Island.", img: "swannEsts"},
		{title: "Bethany Beach", location: "Campbell Place", desc: "Experience the boardwalk, ocean views and great proximity to downtown Bethany.", img: "campbellPl"},
		{title: "Bethany Beach", location: "Sea Colony", desc: "New listing in Sea Colony!", img: "robin"},
		{title: "Bethany Beach", location: "Bayfront Drive", desc: "Excellent opportunity to own a waterfront home just 2 miles to Bethany Beach", img: "bayfrontDr"}
	]
	
	
	var arrayLength = listings.length;
	var num = new Number(Math.floor(Math.random()*arrayLength));
	
	document.getElementById('featTitle').innerHTML = listings[num].title;
	document.getElementById('featLoc').innerHTML = listings[num].location;
	document.getElementById('featDesc').innerHTML = listings[num].desc;
	document.getElementById('featLink').href = "http://www.bethany-rehoboth.com/listings.html#" + listings[num].img;
	document.getElementById('featImg').src = "http://www.bethany-rehoboth.com/images/listings/" + listings[num].img + ".jpg";
	document.getElementById('featImg').title = listings[num].location;
