I've got this problem with some jQuery. I want to display this div when you hover over an element and hide it when you aren't on it.
$(function() {
$('#projects').hover(function() {
$('#projects .pane').show(200), $('#projects .pane').hide(200);
})
});
When you hover it disappears the same time.
Thanks :)