<!--

var mlsNumber = new Array();
var pictureNumber = new Array();
var subDirectory = new Array();
var streetAddress = new Array();
var cityState = new Array();

// To change the featured listings, you need to edit each values MLS number, picture number, street address, city and state
// there are four properties total

// first field is mlsNumber - place MLS number between the quotes.  Next field is the image/picture number taken from the property's 
// unique listing page on coloradoproperty.com.  To find pic number, go to the following address, inserting actual MLS number at end
// http://www.coloproperty.com/Reports/index.cfm?FID=247&Action=DetailReport&MLSNumber=536857
// right-click on the image you want for this page, and under the Address (URL) property, you'll see this value: Media_ID=
// the number following this is the picture number - place this value in the pictureNumber field, between the quotations.
//
// next field is the street address - be sure to trim this field's length, or it may break the page.

// property #1 values

mlsNumber[0] = "663112";
pictureNumber[0] = "012597212";
subDirectory[0] = "/012/597/";
streetAddress[0] = "745 Arapahoe";
cityState[0] = "Boulder, CO";

//property #2 values

mlsNumber[1] = "659121";
pictureNumber[1] = "012520689"; 
subDirectory[1] = "/012/520/";
streetAddress[1] = "5060 Pierre";
cityState[1] = "Boulder, CO";

// property #3 values

mlsNumber[2] = "666427";
pictureNumber[2] = "012655723";
subDirectory[2] = "/012/655/";
streetAddress[2] = "4150 17th";
cityState[2] = "Boulder, CO";

// property #4 values

mlsNumber[3] = "662897";
pictureNumber[3] = "012593100";
subDirectory[3] = "/012/593/";
streetAddress[3] = "1155 Yarmouth";
cityState[3] = "Boulder, CO";

//-->
