Comment puis-je boucler une animation en continu dans jQuery?

J'ai besoin de savoir comment l'infini de la boucle de cette animation. C'est un texte de défilement de l'animation et j'ai besoin d'elle à répéter après c'est fini.

Voici le jQuery:

<script type="text/javascript"  src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript"> 
    $(document).ready(function(){
        $(".boxtext").ready(function(){
            $(".boxtext").animate({bottom:"600px"},50000);
        });
    });
</script>  

Voici le CSS pour ".boxtext"

.boxtext {
    position:absolute;
    bottom:-300px;
    width:470px;
    height:310px;
    font-size:25px;
    font-family:trajan pro;
    color:white;
}

source d'informationauteur user830593