[jQuery] Mouse Out with two divs

[jQuery] Mouse Out with two divs


Hi,
I have a two div with two id :
<div id="somediv">
many Contenet
</div>
<div id="result></div>
i want to make something like that :
$("#somediv").bind("mouseleave",function(){
$('#result').fadeOut();
});
$("#result").bind("mouseleave",function(){
$('#result').fadeOut();
});
But i don't want that result dissapears if if move my mouse on the
other div.
Is there a way to say : hide a div, when mouseout two divs, but not if
you are hover one or another ?
The div are not in the same area in the page.
But They are touching in render page.