﻿function LoadResize() {
    $('.StoreCate-item-Image').each(function () {
        var maxWidth = 180;
        var maxHeight = 128;
        var ratio = 0;
        var width = $(this).width();
        var height = $(this).height();
        if (width > maxWidth) {
            ratio = maxWidth / width;
            $(this).css("width", maxWidth);
            $(this).css("height", height * ratio);
            height = height * ratio;
            width = width * ratio;
        }
        if (height > maxHeight) {
            ratio = maxHeight / height;
            $(this).css("height", maxHeight);
            $(this).css("width", width * ratio);
            width = width * ratio;
        }
    });
}
$(window).load(function () {
    LoadResize();
    $('.StoreCate-item-Image').show();
});
