/* Show / Hide */

$(document).ready(function(){
	$(".sources").hide();
    $(".entry").hover(
        function() {
            $(this).find(".sources").fadeIn("fast");
        },
        function() {
            $(this).find(".sources").fadeOut("fast");
        });
}); 