Need help in JQUERY

Need help in JQUERY

Hi,

I have this js script which is working on mouse click, what is my requirment is that it do the same function wiht on mouse over:

            click: function(e) {
                var el = this;
                el.blur();
                // if the image was not preloaded yet then wait
                if (el.zoomimageCfg.loading === true) {
                    return false;
                }
                //zoom it in if not zoomed already
                if (el.zoomimageCfg.zoomed == false) {
                    EYE.zoomimage.zoomIn(el);
                //else zoom it out
                } else {
                    EYE.zoomimage.zoomOut(el, false);
                }
                return false;
            },

Thank you

Best Regards,
mnightwalker