﻿$(function() {
    $("*[id*=promt_]").hover(function() {
        $("*[id*=hint_]").hide();
        var id = this.id.split("_")[1];
        $("*[id=hint_" + id + "]").show();
    }, function() {
        var id = this.id.split("_")[1];
        $("*[id=hint_" + id + "]").hide();
    });
});

