var timer;
jQuery(function($) {
        timer = setTimeout(Cloud, 0);
});

function Cloud() {
        $("#refinfo").
                animate({opacity: 1}, 500).delay(3000).
                animate({opacity: 0}, 500, function() {
                        timer = setTimeout(Cloud, 0);
                });
}

