// Image Zoom With Wheel
// マウスホイールで画像をズーム。デフォルトでCtrl+マウスホイールでズームできるので不要


if ((window.location.href.match(/^.*\.(jpe?g|bmp|gif|png)$/i)) && (document.images.length==1) || (window.location.href.match(/^http:\/\/i.imdb.com\/Photos\/.*$/i))) {
    defWidth= document.images[0].width;
    window.addEventListener("onmousewheel",function(e) {
        chk = e.detail;
        if(chk > 0) {
            document.images[0].width = document.images[0].width * 1.1;
        } else {
            document.images[0].width = document.images[0].width * 0.9;
        }
    },false);
    window.addEventListener('click',function () {
        document.images[0].width = defWidth;
    },false);
}
