//---------------------------------------------------------------------------
// Function used by nav.jsp to replace the syndetics graphics with text links
//---------------------------------------------------------------------------
var reviews = new Array();
var tableofcontents = new Array();
var summary = new Array();
var excerpts = new Array();
var anotes= new Array();
var characters = new Array();
var trailers = new Array();

function add_Syndetics() {
	for(var i=0; i< reviews.length; i++) {
		if(reviews[i].width > 1) {
			document.getElementById('rev'+i).firstChild.nodeValue="[Reviews]";
		}
		if(tableofcontents[i].width > 1) {
			document.getElementById('toc'+i).firstChild.nodeValue="[Table of Contents]";
		}
		if(summary[i].width > 1) {
			document.getElementById('sum'+i).firstChild.nodeValue="[Summary]";
		}
		if(excerpts[i].width > 1) {
			document.getElementById('exc'+i).firstChild.nodeValue="[Excerpts]";
		}
		if(anotes[i].width > 1) {
			document.getElementById('anot'+i).firstChild.nodeValue="[Author Notes]";
		}
		if(characters[i].width > 1) {
			document.getElementById('chara'+i).firstChild.nodeValue="[Characters]";
		}
		if(trailers[i].width > 1) {
			document.getElementById('video'+i).firstChild.nodeValue="[Watch Movie Trailer]";
		}
	}
}






