var list_across0 = [
'_contents.htm',
'_reference.htm',
'_index.htm',
'_search.htm',
'_external.htm'
];
var list_down0 = [
'chapter1.htm',
'chapter2.htm',
'software.htm',
'chapter3.htm',
'chapter5.htm',
'part2.htm',
'test.htm',
'bib.htm'
];
var list_current0 = [
'home.htm#Instructor',
'home.htm#News',
'home.htm#2005 Web Site',
'home.htm#Discussion List',
'home.htm#MathML Site',
'home.htm#Viewing MathML',
'home.htm#Class Time and Location',
'home.htm#Text Book',
'home.htm#Home Work',
'home.htm#Computer Solution',
'home.htm#Testing',
'home.htm#Testing.Quizzes',
'home.htm#Testing.Final',
'home.htm#Testing.Test Rules',
'home.htm#Testing.Missing Tests',
'home.htm#Testing.Grading Corrections',
'home.htm#Testing.Final Grade',
'home.htm#Contents'
];
function choose_across0(item)
{	var index          = item.selectedIndex;
	item.selectedIndex = 0;
	if(index > 0)
		document.location = list_across0[index-1];
}
function choose_down0(item)
{	var index          = item.selectedIndex;
	item.selectedIndex = 0;
	if(index > 0)
		document.location = list_down0[index-1];
}
function choose_current0(item)
{	var index          = item.selectedIndex;
	item.selectedIndex = 0;
	if(index > 0)
		document.location = list_current0[index-1];
}
