
function makeArray(len){
	for (var i=0; i<len; i++) {
		this[i]=null;
	}
	this.length=len;
}

var header_images=new makeArray(4);
header_images[0]="<a href='http://www.jeffersonscholars.org/news-publications/scholar-videos/'><img src='images/homePageVideoLaura.png' border='0' alt='Watch the full video' Title='Watch the full Scholar Video'></a>";
header_images[1]="<a href='http://www.jeffersonscholars.org/news-publications/scholar-videos/'><img src='images/homePageVideoKaz.png' border='0' alt='Watch the full video' Title='Watch the full Scholar Video'></a>";
header_images[2]="<a href='http://www.jeffersonscholars.org/news-publications/scholar-videos/'><img src='images/homePageVideoDanna.png' border='0' alt='Watch the full video' Title='Watch the full Scholar Video'></a>";
header_images[3]="<a href='http://www.jeffersonscholars.org/news-publications/scholar-videos/'><img src='images/homePageVideoJoe.png' border='0' alt='Watch the full video' Title='Watch the full Scholar Video'></a>";


function rand(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
	return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff


