//<![CDATA[ 
  
var Total = 6;     // Number of alternative images
var Rando = new Array(Total);  // Array to hold filenames
 
Rando[0] = "http://hoby.org/assets/images/img_masthead_02.jpg";
Rando[1] = "http://cthoby.org/cthoby_files/hoby_masthead.jpg";
Rando[2] = "http://cthoby.org/cthoby_files/beach.jpg";
Rando[3] = "http://cthoby.org/cthoby_files/chester.jpg";
Rando[4] = "http://cthoby.org/cthoby_files/hoby.jpg";
Rando[5] = "http://cthoby.org/cthoby_files/hands.jpg";

function pickRandom(range) {
	if (Math.random)
	return Math.round(Math.random() * (range-1));
else {
	var now = new Date();
return (now.getTime() / 1000) % range;
	}
}
var poof = pickRandom(Total);
//]]> 