Hello,
I agree with what Medyman wrote, a preloader should solve your problem regarding the speed of the rollovers.
Regarding accessibility, you can include text for your links and then hide it using CSS, like this:
HTML Code:
<div id="myMenu">
<a href="#" id="homeLink"><span>Home</span></a>
<a href="#" id="forumLink"><span>Forum</span></a>
<a href="#" id="shopLink"><span>Snot Shop</span></a>
</div>
Code:
#myMenu span {
display:none;
}
This way the text is there for screen-readers but doesn't get in the way of you using your images.
Hope this helps.
SNOT
dog
Bookmarks