﻿
jQuery(function($) {
    $('.EnlargeImage').click(function() {
        jQuery(this).parent()
                    .find('.EnlargeImgObject')
                    .show();
    });
    $('.EnlargeImgObject .ClosePop').click(function() {

        jQuery(this).parent()
                    .hide();
        return false;
    });
    $('.EnlargeImgObject .ClosePopBtn').click(function() {

        jQuery(this).parent()
                    .hide();
        return false;
    });
});
