﻿function profiles() {

var n = 1; 
var r = 15;  //this is just 1 less than the total
n = (Math.round(Math.random()*r) + 1);
var personName = new Array
	

	personName[1]="William W. Cook"; 
	personName[2]="James V. Campbell"; 
	personName[3]="Thomas M. Cooley";
	personName[4]="Charles A. Kent";
	personName[5]="Henry W. Rogers";
	personName[6]="Jerome C. Knowlton";
	personName[7]="Harry B. Hutchins";
	personName[8]="Henry M. Bates";
	personName[9]="E. Blythe Stason";
	personName[10]="Allan F. Smith";
	personName[11]="Francis A. Allen";
	personName[12]="Theodore St. Antoine";
	personName[13]="Terrance Sandalow";
	personName[14]="Lee C. Bollinger";
	personName[15]="Jeffrey S. Lehman";
	personName[16]="Evan H. Caminker";

//holds captions for future use
var imageCaption = new Array 

	//change caption names here
	

	imageCaption[1]="LL.B. 1882, Donor of Law Quad";
	imageCaption[2]="Law School Dean, 1859-1871";
	imageCaption[3]="Law School Dean, 1871-1883";
	imageCaption[4]="Law School Dean, 1876-1883";
	imageCaption[5]="Law School Dean, 1886-1890";
	imageCaption[6]="Law School Dean, 1890-1895";
	imageCaption[7]="Law School Dean, 1895-1910";
	imageCaption[8]="Law School Dean, 1910-1939";
	imageCaption[9]="Law School Dean, 1939-1960";
	imageCaption[10]="Law School Dean, 1960-1965";
	imageCaption[11]="Law School Dean, 1966-1971";
	imageCaption[12]="Law School Dean, 1971-1978";
	imageCaption[13]="Law School Dean, 1978-1987";
	imageCaption[14]="Law School Dean, 1987-1994";
	imageCaption[15]="Law School Dean, 1994-2003";
	imageCaption[16]="Law School Dean, 2003-present";
	


var imageName = new Array

	//change photo locations here
	

	imageName[1]='/historyandtraditions/PublishingImages/Cook%20in%20Men%20of%20NY_Web.jpg';
	imageName[2]='/historyandtraditions/PublishingImages/Campbell,%20James%20V2.jpg';
	imageName[3]='/historyandtraditions/PublishingImages/Cooley,%20Thomas%20M%20crop.jpg';
	imageName[4]='/historyandtraditions/PublishingImages/Kent,%20Charles%20A2.jpg';
	imageName[5]='/historyandtraditions/PublishingImages/Rogers,%20Henry%20W2.jpg';
	imageName[6]='/historyandtraditions/PublishingImages/Knowlton,%20Jerome%20C.jpg';
	imageName[7]='/historyandtraditions/PublishingImages/Hutchins,%20Harry%20B%20crop.jpg';
	imageName[8]='/historyandtraditions/PublishingImages/Bates,%20Henry%20M%20crop.jpg';
	imageName[9]='/historyandtraditions/PublishingImages/Stason,%20E%20Blythe%20crop.jpg';
	imageName[10]='/historyandtraditions/PublishingImages/Smith,%20Allan%20F%20crop.jpg';
	imageName[11]='/historyandtraditions/PublishingImages/Allen,%20Francis%20A2.jpg';
	imageName[12]='/historyandtraditions/PublishingImages/St.%20Antoine,%20Theodore%20crop.jpg';
	imageName[13]='/historyandtraditions/PublishingImages/Sandalow,%20Terrance2.jpg';
	imageName[14]='/historyandtraditions/PublishingImages/Bollinger,%20Lee%20C%20crop.jpg';
	imageName[15]='/historyandtraditions/PublishingImages/Lehman,%20Jeffrey.jpg';
	imageName[16]='/historyandtraditions/PublishingImages/Caminker,%20Evan%20H%20crop.jpg';
		

	
//writes out the profile information to various places 
//on the home page
var photoProfileImage=document.getElementById('leftImage'); 
photoProfileImage.setAttribute("src" , imageName[n]);
document.getElementById('floaterPERSON').innerHTML=personName[n]; 
document.getElementById('profilePERSON').innerHTML=imageCaption[n];



}
//functions to do the rollovers

function hidediv(name) {
if (document.getElementById) { // DOM3 = IE5, NS6
document.getElementById(name).style.visibility = 'hidden';
}
else {
if (document.layers) { // Netscape 4
document.hideshow.visibility = 'hidden';
}
else { // IE 4
document.all.hideshow.style.visibility = 'hidden';
}
}
}

function showdiv(name) {
if (document.getElementById) { // DOM3 = IE5, NS6
document.getElementById(name).style.visibility = 'visible';
}
else {
if (document.layers) { // Netscape 4
document.hideshow.visibility = 'visible';
}
else { // IE 4
document.all.hideshow.style.visibility = 'visible';
}
}
}

