There is nothing in the script which is setting any particular color for anything. You probably could take care of this in your stylesheet with:
Code:
body {
color:white;
}
But, I have no idea why your page is messed up like that to begin with, you should already have it styled in a way that would prevent dark text on a dark background. So, a more complex solution may be required. You can always use spans in the array to set the text color, ex:
Code:
description[0]="<span style='color:white;'>DHTML: The Definitive Guide<\/span>"
Bookmarks