
/* - zoom_icon.js - */
jq(document).ready(function () {
    fz = jq('a.fancy_zoom');
    jq.each(fz, function() {
        fz = jq(this);
        img = fz.children('img');
        img.before('<span class="zoom-icon"></span>');
        icon = fz.children('span');
        icon.css('left', img.width()-20)
            .css('top', img.height()-20);
    });
});



