﻿$(document).ready(function () {
    $("img[id^='prm_']").each(function () {
        $(this).mouseover(function () {
            $(this).fadeTo(100, 0.33);
            $(this).fadeTo(100, 1);
        });

        $(this).mouseout(function () {
        });
    });
});
