﻿(function (d) { d.fn.aeImageResize = function (a) { var i = 0, j = d.browser.msie && 6 == ~ ~d.browser.version; if (!a.height && !a.width) return this; if (a.height && a.width) i = a.width / a.height; return this.one("load", function () { this.removeAttribute("height"); this.removeAttribute("width"); this.style.height = this.style.width = ""; var e = this.height, f = this.width, g = f / e, b = a.height, c = a.width, h = i; h || (h = b ? g + 1 : g - 1); if (b && e > b || c && f > c) { if (g > h) b = ~ ~(e / f * c); else c = ~ ~(f / e * b); this.height = b; this.width = c } }).each(function () { if (this.complete || j) d(this).trigger("load") }) } })(jQuery);
