<!--

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] = "606883";
pictureNumber[0] = "010930710";
subDirectory[0] = "/010/930/";
streetAddress[0] = "2409 20th";
cityState[0] = "Boulder, CO";

//property #2 values

mlsNumber[1] = "589434";
pictureNumber[1] = "010209360"; 
subDirectory[1] = "/010/209/";
streetAddress[1] = "634 Pine";
cityState[1] = "Boulder, CO";

// property #3 values

mlsNumber[2] = "613229";
pictureNumber[2] = "010839932";
subDirectory[2] = "/010/839/";
streetAddress[2] = "429 Mapleton Ave 429A";
cityState[2] = "Boulder, CO";

// property #4 values

mlsNumber[3] = "609097";
pictureNumber[3] = "011028139";
subDirectory[3] = "/011/028/";
streetAddress[3] = "1606 Pine";
cityState[3] = "Boulder, CO";

//-->