<!-- hide from older browsers

a = 12
var rand1 = Math.random();
var rand2 = Math.round(rand1 * (a-1))+1;

function create() {

    this.src = ' ';
    this.href = ' ';
    this.alt = ' ';

}

b = new Array();

for (var i = 1; i <= a; i++) {b[i]=new create() }


b[1].src = "Cabin-on-the-hill/boerne5.jpg";
b[1].href = "Cabin-on-the-hill/";
b[1].alt= "Cabin on the Hill";

b[2].src = "Casa-dores-angel-fire-new-mexico/2_small.jpg";
b[2].href = "Casa-dores-angel-fire-new-mexico/";
b[2].alt= "Casa - Dores";

b[3].src = "Crescent-quarters/front-one-of-the-best1.jpg";
b[3].href = "Crescent-quarters/";
b[3].alt= "Crescent Quarters";

b[4].src = "Eagle-ranch/boerne9.jpg";
b[4].href = "Eagle-ranch/";
b[4].alt= "Eagle Ranch";

b[5].src = "Homestead/boerne12.jpg";
b[5].href = "Homestead/";
b[5].alt= "Homestead";

b[6].src = "joshua/stonehouse.gif";
b[6].href = "joshua/";
b[6].alt= "Joshua Creek Ranch";

b[7].src = "Pecan-Street-Hideaway/pecan-st-house-015_small.jpg";
b[7].href = "Pecan-Street-Hideaway/";
b[7].alt= "Pecan Street Hideaway";

b[8].src = "The-meyer/boerne14.jpg";
b[8].href = "The-meyer/";
b[8].alt= "The Meyer ";

b[9].src = "Red-bud-cottage/Townhouse_small.jpg";
b[9].href = "Red-bud-cottage/";
b[9].alt= "Red Bud Cottage";

b[10].src = "Rockn-b-ranch/Living-2.jpg";
b[10].href = "Rockn-b-ranch/";
b[10].alt= "Rock'n B Ranch House";

b[11].src = "SABINAS/SM5_small.jpg";
b[11].href = "SABINAS/index.htm";
b[11].alt= "Sabinas Mountain Ranch";

b[12].src = "Casitas/outside_small.jpg";
b[12].href = "Casitas/";
b[12].alt= "Casitas at Madrona Ranch";

var image = "";
image += '<a href="' + b[rand2].href + '">';
image += '<img src="' + b[rand2].src + '"';
image += ' border=0 align=center ';
image += ' width=250 alt="';
image += b[rand2].alt + '">';
image +='</a>'

//-->


//-->




