﻿function TolTipNot() {
    $(".modalhome").hide();
    $(".notIndi").each(function (i) {
        $(this).mouseover(function (e) { $(".modalhome", this).show(); });
        $(this).mouseleave(function (e) { $(".modalhome", this).hide(); });
    });
}
