﻿function sizeImage() {
    $(".newsimg img").each(function() {
        var wdt = this.width;
        if ((wdt != 204) && (wdt > 0)) {
            var hgt = this.height;
            var ratio = wdt / hgt;
            this.width = 204;
            this.height = 204 / ratio;
        }
    });
}
