Problem hat sich mit folgendem JavaScript erledigt.
Im JS-Header der Page:
function hide_twisties() {
for(i=0;i<document.images.length;i++) {
if (document.images.src.indexOf('expand.gif')!=-1) {
document.images.width=WIDTH=0
document.images.height=HEIGHT=0
}
if (document.images.src.indexOf('collapse.gif')!=-1) {
document.images.width=WIDTH=0
document.images.height=HEIGHT=0
}
}
}
Im OnLoad-Teil:
hide_twisties()