// JavaScript Document

function setupSlideNav() {
	if( chapterNav = document.getElementById('chapterNav') ) {
		addEvent(chapterNav,'change',goChapter);
	}
}

function goChapter() {
	chapterNav = document.getElementById('chapterNav');
	window.location.href = chapterNav.options[chapterNav.selectedIndex].value;
}
