$(document).ready(function () {
    
    
    include('js/enlarger/enlarger.js');

    $("img[src$='png']").each(function () {
        $(this).addClass('png');
    });
});

function include(filename)
{
    var script = document.createElement('script');
    script.src = filename;
    script.type = 'text/javascript';
    $('body').append(script);
}