[jQuery] Getting Div to Show after mouseout

[jQuery] Getting Div to Show after mouseout

    $
"a.mSelect"
.hover
            function
{
                var month = $
this
.attr
"rel"
;
                $
"#m"
month
.fadeIn
;
            },
            function
{
                var month = $
this
.attr
"rel"
;
                $
"#m"
month
.hide
;
            }
        
;
I have multiple div's acting as buttons, when you over over them it
will show the respected div, but I would like this respected div to
stay visible until the user hovers over another div
button
. In the
code above, as soon as the user mouseout the div hides. Please help,
thanks!