/*

IB_listdata[index] = "??????1";
IB_listpage[index] = 1;

IB_listdata[index] = "pdfworkflow";
IB_listpage[index] = 4;

IB_listdata[index] = "Pindar-White";
IB_listpage[index] = 7;

*/

var olTOC = NewEl('ol', 'olTOC');
var liTOC;

olTOC.style.position = 'absolute';
olTOC.style.zIndex = '400';
olTOC.style.left = '0';
olTOC.style.top = '0';

for(var i = 0; i < IB_listdata.length; i++) {
	liTOC = NewEl('li', 'liTOC_' + i);
	liTOC.appendChild(NewText(IB_listdata[i]));
	liTOC.pageNumber = IB_listpage[i];
	liTOC.onclick = function() { Book.GoTo(this.pageNumber); };
	olTOC.appendChild(liTOC);
}

Element.hide(olTOC);
document.body.appendChild(olTOC);
