﻿$(function () {
    $(".stream-item.members").hover(function () {
        $(this).find(".post").show();
        $(this).find(".image").addClass("hovercard");
    }, function () {
        $(this).find(".post").hide();
        $(this).find(".image").removeClass("hovercard");
    });
});
