$(document).ready(function() {
    $(".btDownload").mouseover(function() {
        $("p#clique").fadeIn("fast");
    });
    if (!($("#clique").mouseover)) {
        $(".btDownload").mouseout(function() {
            $("#clique").fadeOut("fast");
        })
    };
    $("#clique").mouseover(function() {
        $(this).css("display", "block");
    });
    $("#clique").mouseout(function() {
        $(this).css("display", "none");
    });
});