If you delete the javascript function highlighttab:
Code:
function highlighttab(aobject){
if (typeof tabobjlinks=="undefined")
collectddimagetabs()
for (i=0; i<tabobjlinks.length; i++)
tabobjlinks[i].className=""
aobject.className="current"
}
Then, delete the call to that function in expandcontent (!!!just the line that says highlighttab(aobject)!!!):
Code:
function expandcontent(cid, aobject){
...
if (document.getElementById && turntosingle==0){
highlighttab(aobject)
...
}
}
and finally, in the <style> tags, change:
Code:
#ddimagetabs a:hover, #ddimagetabs a.current{
to:
Code:
#ddimagetabs a:hover{
Bookmarks