//FAQ stuff
function showFAQ(id) {
	document.getElementById(id).style.display = 'block';
}

function hideFAQ(id) {
	document.getElementById(id).style.display = 'none';
}

// Main page random image display
var myImages = new Array()

myImages[0] = 'home1.jpg'
myImages[1] = 'home2.jpg'
myImages[2] = 'home3.jpg'
myImages[3] = 'home4.jpg'


var j = 0
var p = myImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = myImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src=\"/images/'+myImages[whichImage]+'\" width=\"225\" height=\"150\" align=\"right\" style=\"border:1px solid #000000\">')
}