
<!-- FAQ Hide/Show -->
function expandCollapse (postid) { 

   whichpost = document.getElementById(postid); 
   
   if (whichpost.className=="postshown") { 
      whichpost.className="posthidden"; 
   } 
   else { 
      whichpost.className="postshown"; 
   } 
} 

<!-- -------------------------------------- -->

<!-- Random Image -->
// Set up the image files to be used.
var randInsite = new Array() 
randInsite[0] = 'images/insite1.jpg'
randInsite[1] = 'images/insite2.jpg'

var j = 0
var z = randInsite.length;
var preBuffer = new Array()
for (i = 0; i < z; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = randInsite[i]
}
var whichInsite = Math.round(Math.random()*(z-1));
function showInsite(){
document.write('<img src="'+randInsite[whichInsite]+'" border=0>');
}

<!-- -------------------------------------- -->

<!-- Random Image -->
// Set up the image files to be used.
var randAbout = new Array() 
randAbout[0] = 'images/about1.jpg'
randAbout[1] = 'images/about2.jpg'

var j = 0
var z = randAbout.length;
var preBuffer2 = new Array()
for (i = 0; i < z; i++){
   preBuffer2[i] = new Image()
   preBuffer2[i].src = randAbout[i]
}
var whichAbout = Math.round(Math.random()*(z-1));
function showAbout(){
document.write('<img src="'+randAbout[whichAbout]+'" class=floatright>');
}

