<!-- Begin
  var aryImages = new Array(2);

  aryImages[0] = "images/house_1.jpg";
  aryImages[1] = "images/house_2.jpg";
  aryImages[2] = "images/house_3.jpg";
  aryImages[3] = "images/house_4.jpg";
  aryImages[4] = "images/house_5.jpg";
  aryImages[5] = "images/house_6.jpg";
  aryImages[6] = "images/house_7.jpg";
  aryImages[7] = "images/house_8.jpg";
  aryImages[8] = "images/house_9.jpg";
  aryImages[9] = "images/house_10.jpg";
  aryImages[10] = "images/house_11.jpg";
  aryImages[11] = "images/house_12.jpg";
  aryImages[12] = "images/house_13.jpg";


  text_1 = "Exterior";
  text_2 = "Kitchen";
  text_3 = "Sitting Area";
  text_4 = "Children Bedroom";
  text_5 = "Living Room";
  text_6 = "Master Bedroom";
  text_7 = "Handicap Accessible Bedroom";
  text_8 = "Handicap Accessible Bath";
  text_9 = "Handicap Accessible Bath 2";
  text_10 = "Outside Deck";
  text_11 = "Outdoor Showers";
  text_12 = "Bedroom #2";
  text_13 = "Dining Area and Kitchen";


  for (i=0; i < aryImages.length; i++) {
    var preload = new Image();
    preload.src = aryImages[i];
  }

  function swap(imgIndex) {
    document['imgMain'].src = aryImages[imgIndex];
  }
//  End -->

<!--
function ContactFormVerify( theform )
{
	var bMissingFields = false;
	var strFields = "";
	
	if( theform.name.value == '' ){
		bMissingFields = true;
		strFields += "* Your Name\n";
	}
	if( theform.email.value == '' ){
		bMissingFields = true;
		strFields += "* Email Address\n";
	}
	if( theform.comments.value == '' ){
		bMissingFields = true;
		strFields += "* Your Comments or Question\n";
	}
	if( bMissingFields ) {
		alert( "You need to enter the following before submitting a contact:\n\n" + strFields );
		return false;
	}
	
	return true;
}
//-->