Visited Link Style and link_to_remote

link_to_remote set the link element to
which means the link items sharing same location “#”, so if there are
multiple
link items in one page, as far as one of them is clicked, all the others
will
change the status to “click”.

Now I am solving this problem by not using tag (which means directly
using
javascript, not the link_to_remote helper) and custom define the class
for mouseover, mouseout, clicked and unclicked.

Is there any better approaches?

-Tony