<!-- hide from older browsers

a = 10
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 = "The-meyer/boerne14.jpg";
b[2].href = "The-meyer/";
b[2].alt= "The Meyer";

b[3].src = "Crescent-quarters/boerne8.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 = "Mcclures/boerne1.jpg";
b[6].href = "Mcclures/";
b[6].alt= "McClures";

b[7].src = "Rockn-b-ranch/boerne2.jpg";
b[7].href = "Rockn-b-ranch/";
b[7].alt= "Rock'n B Ranch";

b[8].src = "joshua/stonehouse.gif";
b[8].href = "joshua/";
b[8].alt= "Joshua Creek Ranch";

b[9].src = "sisterdale/B-&-B-home.jpg";
b[9].href = "sisterdale/index.htm";
b[9].alt= "Sisterdale Guesthouse";

b[10].src = "SABINAS/SM5_small.jpg";
b[10].href = "SABINAS/index.htm";
b[10].alt= "Sabinas Mountain 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>'

//-->


//-->



