﻿$(function () {
    $(".list_pic img").each(function () {
        if (this.width > 208) {
            $(this).css("left", -((this.width - 208) / 2));
            $(this).css("top", -((this.height - 208) / 4));
        }
    });
});
