﻿$(document).ready(function(){
    $("img.Tombstone").fadeTo("fast", 1.0);
    $("img.Tombstone").hover(function(){
        $(this).fadeTo("fast", 0.6);
    },function(){
        $(this).fadeTo("slow", 1.0);
    });
});

$(document).ready(function(){
    $("img.Transaction").fadeTo("fast", 1.0);
    $("img.Transaction").hover(function(){
        $(this).fadeTo("fast", 0.6);
    },function(){
        $(this).fadeTo("slow", 1.0);
    });
});

$(document).ready(function(){
    $("img.Team").fadeTo("fast", 1.0);
    $("img.Team").hover(function(){
        $(this).fadeTo("fast", 0.8);
    },function(){
        $(this).fadeTo("fast", 1.0);
    });
});         
