//set the interior pages images
InteriorPhoto = new Array()
InteriorPhoto[1] = "/Uploads/15/Images/4732846new_banner.jpg"
// InteriorPhoto[2] = "/Uploads/29/Images/515photo_02.jpgg"
// InteriorPhoto[3] = "/Uploads/29/Images/516photo_03.jpg"

//set the home testimonial images
HomeTestimonial = new Array()
HomeTestimonial[1] = "/Uploads/15/Images/927testimonial1.jpg"
HomeTestimonial[2] = "/Uploads/15/Images/928testimonial2.jpg"
HomeTestimonial[3] = "/Uploads/15/Images/929testimonial3.jpg"
HomeTestimonial[4] = "/Uploads/15/Images/930testimonial4.jpg"
HomeTestimonial[5] = "/Uploads/15/Images/931testimonial5.jpg"

// display randomized image
function showImage() {
	document.write('<img src="' + InteriorPhoto[(Math.round((InteriorPhoto.length - 2) * Math.random()) + 1)] + '" hspace=0 vspace=0 WIDTH=770 HEIGHT=53 border="0" />');
}

// display randomized image
function showTestimonialImage() {
	document.write('<img src="' + HomeTestimonial[(Math.round((HomeTestimonial.length - 2) * Math.random()) + 1)] + '" hspace=0 vspace=0 WIDTH=186 HEIGHT=156 border="0" />');
}
