function animBtn() {
    $("#af-home-btn").animate({
        opacity: .8
    },
    1000,
    function() {
        $(this).animate({
            opacity: 1
        },
        1000)
    });
}
$(function() {
    $("#box-one").hover(function() {
        $("#tooltip").fadeIn('slow')
    },
    function() {
        $("#tooltip").fadeOut('slow')
    })
    setInterval("animBtn()", 2000)
});
