I hope this is an easy one, but I've got a page where there's a table with many rows, and the user can decide to view anywhere from fifty per page to the "entire" list which is about 1500 rows. I've noticed that when viewing more rows per page, the "a:hover" style becomes significantly slower. Its not too bad in Firefox/Chrome/Safari but it's very bad in IE7. What's the best way to handle anchor hovering when there are a ton of anchors who use the style?
Here is the CSS I'm currently using for it:
a.brochurelink{
color:#000000;
font-weight:bold;
text-decoration:none;
}
a.brochurelink:visited{
color:#9900BD;
}
a.brochurelink:hover{
text-decoration:underline;
color:#0000FF;
}