$("#ss3a").hover(function(){
$(".linksa").toggleClass("linksa",false);
},function(){
$(".linksa").toggleClass("linksa",true);
});
linksa has a "visibilty:hidden" css roperty.
The first part works however the div dosen't become invisible again when I move the mouse out of the div.
I tried the same with mouseenter and mouseleave but it's still not working.