
function extraTextCallback(responseText) {
	$('textContents').innerHTML = responseText;
	fadingHilight('textContents',8,70,"#FFD9AD","#FFFFFF");
	scrollToShow( $('bookExtras'));
}

function showExcerpts(itemID) {
	var a = new SimpleAjax( 'excerptsServer.asp', 'itemID='+itemID, extraTextCallback);
}

function showTOC(itemID) {
	var a = new SimpleAjax( 'tocServer.asp', 'itemID='+itemID, extraTextCallback);
}
