var img=new Array(9);
img[0]="images/features/feature_mc.jpg";
img[1]="images/features/feature_mc_1.jpg";
img[2]="images/features/feature_mc_2.jpg";
img[3]="images/features/feature_mc_3.jpg";
img[4]="images/features/feature_mc_4.jpg";
img[5]="images/features/feature_mc_5.jpg";
img[6]="images/features/feature_mc_6.jpg";
img[7]="images/features/feature_mc_7.jpg";
img[8]="images/features/feature_mc_8.jpg";



whichImg = get_random();
whichImg2 = 0;
do {
  whichImg2 = get_random();
} while (whichImg == whichImg2);

function get_random() {
  // Make sure that random()*X) has the correct
  // number. The number of images defined below.
  var ranNum= Math.floor(Math.random() * 9);
  return ranNum;
}

function show_image() {
  // Image disply
  document.write("<img src='");
  document.write(img[whichImg]);
  document.write("' border='0' width='880' height='229' alt='Bodega Bay Home Rentals' title='Bodega Bay Vacation Homes' />");
}

function show_image2() {
  // Image disply
  document.write("<img src='");
  document.write(img[whichImg2]);
  document.write("' border='0' width='880' height='229' alt='Bodega Bay Area Photo' title='Bodega Bay Home Rentals' />");
}
