﻿$j(document).ready(function() {
    var members = $j(".StaffBox .Overlay");

    members.hover(function() {
        //$j(this).parents("ul").css("position", "relative");
        $j(this).siblings(".description").show();
    }, function() {
        $j(this).siblings(".description").hide();
    });

    $j(".description").hover(function() {
        $j(this).show();
    }, function() {
        $j(this).hide();
    });
});
