function setup () {

	labels = new Array("English Surname", "Hebrew Given Name", "The Family Tree",
		"Family Photo Gallery", "Birthday Calendar", "Yahrzeit Calendar",
		"Family Chronology", "Current Residence")
	hrefs = new Array("indexE", "indexH", "tree", "indexP", "indexB", "indexY",
		"indexC", "indexL")

	outColor = "'white'"
	outBackgroundColor = "'#2C8FCC'"
	overColor = "'#666666'"
	overBackgroundColor = "'#F8F88A'"

	tableStart = "<table cellpadding='0' cellspacing='0'>"
	myString = tableStart + "<tr>"

	for (j = 0; j < 2; j++) {
		myString += "<td>" + tableStart
		for (i = labels.length / 2 * j; i < labels.length / 2 * j + labels.length / 2; i++)
			myString += "<tr><td class=choiceTD>"
				+ "<a class=choiceAnchor href='" + hrefs[i] + ".html' " +
				"style=\"background-color:" + outBackgroundColor +
				";color:" + outColor + "\" " +
				"onmouseover=\"this.style.backgroundColor=" +
				overBackgroundColor + ";" +
				"this.style.color=" + overColor + "\" " +
				"onmouseout=\"this.style.backgroundColor=" +
				outBackgroundColor + ";" +
				"this.style.color=" + outColor + "\"" +
				">" + labels[i] + "</a></td></tr>"
		myString += "</table></td>"
	}
	myString += "</tr></table>"
	document.all['indexTag'].innerHTML = myString

	EdellImage = new Image()
	EdellImage.src = "EdellButtonL.gif"
	ReisnerImage = new Image()
	ReisnerImage.src = "ReisnerButtonL.gif"
}

function colorIt (anchorObject, state) {
	anchorObject.style.color = state == 'over' ? '#43DD8F' : '#10AC5D'
}

