﻿$(document).ready(function () {
    $("img.a").hover(
function () {
    $(this).stop().animate({ "opacity": "1" }, "fast");
},
function () {
    $(this).stop().animate({ "opacity": ".8" }, "fast");
});

});
