$("document").ready(function(){
    $("#selected-transactions .titlewrapper .hover").css("display","none");
    
    $("#selected-transactions a").hover(function(){
        $(this).children("img").css("top","-66px");
        $(this).siblings(".titlewrapper").children().css("display","block");
    },
    function(){
        $(this).children("img").css("top","0");
        $(this).children(".hover").css("display","hidden");
        $(this).siblings(".titlewrapper").children().css("display","none");
    });
});

