That is an accessibility feature for mouseless navigation and most folks who use FF on a regular basis are pretty much used to it. With that in mind I would advise against removing it. However, it can be removed with css by having your markup look something like so:
HTML Code:
<div id="theShow">
<script type="text/javascript">
new inter_slide(slides)
</script>
</div>
And in your stylesheet having:
Code:
div#theShow table input {
outline-style:none;
}
This will also disable mouseless navigation in IE and all other browsers even though they do not show that outline ordinarily until mouseless navigation is initiated - Another good reason not to do this.
Bookmarks