﻿function showInfo(id, evt) {
    $("#" + id).css("top", mY - 70);
    $("#" + id).css("left", mX - 355);
    $("#" + id).fadeIn('fast');
    
}
function hideInfo(id) {
    $("#" + id).fadeOut('fast');
}