﻿$(document).ready(function () {
    $("a.infoimage").hover(
        function () {
            $('.info', this).animate({ opacity: .7 }, 200, function () { });
        },
        function () {
            $('.info', this).animate({ opacity: .0 }, 50, function () { });
        });
}); 
