/**1*2* Zoomimage3* Author: Stefan Petre www.eyecon.ro4*5*/6(function($){7var EYE = window.EYE = function() {8var _registered = {9init: []10};11return {12init: function() {13$.each(_registered.init, function(nr, fn){14fn.call();15});16},17extend: function(prop) {18for (var i in prop) {19if (prop[i] != undefined) {20this[i] = prop[i];21}22}23},24register: function(fn, type) {25if (!_registered[type]) {26_registered[type] = [];27}28_registered[type].push(fn);29}30};31}();32$(EYE.init);33})(jQuery);343536