Well, it's hard to say for sure, without seeing your page, why that is happening. Most likely you have other relatively or absolutely positioned elements on your page. If that is the case and they don't have z-indexes set for them, then changing style for the html of the 'ball' divisions should work. Like so:
HTML Code:
<div id="dot0" style="z-index:100;position: absolute; visibility: hidden; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot1" style="z-index:100;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot2" style="z-index:100;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot3" style="z-index:100;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot4" style="z-index:100;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot5" style="z-index:100;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot6" style="z-index:100;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
Bookmarks