jQuery image magnifier

The first two are just scale:4,
third is scale:7,
last is glassSize:200 (w/ default scale)

. . . .

$(function(){
    $("img.magnify").magnify({ scale:4 });
    $("img.magnifyWell").magnify({ scale: 7 });
    $("img.bigView").magnify({ glassSize:200 });
});

The Dojo Version: test_Magnifier (uses SVG for underlay instead of duplicate img tag))