$(function () {

    $("a[lrgimg]").mouseenter(function () {
        var lrgimg = $(this).attr("lrgimg");
        $(".map img").attr("src", lrgimg);
    });

    $('a[lrgimg]').each(function () {
        $("<img>").attr("src", $(this).attr('lrgimg'));
    });

    //$(".Point[PopUpID]").each(function () {
        //var ItemClass = $(this).attr("PopUpID");
        
        //$(this).mouseenter(function () {
            //alert(ItemClass);
            //$(".PopUpItem").each(function () {
                //alert($(this).hasClass(ItemClass));
                //if ($(this).hasClass(ItemClass)) {
                    //$(this).css("display", "block");
                //}
                //else {
                    //$(this).css("display", "none");
                //}

            //});
            //$("." + id).css("display", "block");
        //});
    //});
});
