﻿function imageOpacity(imgObj) {
    $(imgObj).each(function () {
        $(this).mouseover(function () {
            $(this).fadeTo("fast", 0.6);
        });
        $(this).mouseout(function () {
            $(this).fadeTo("fast", 1);
        });
    });
}
