I have a simple fade in that I would like to pulse in and out indefinitely. I have found plugins that do this but was curious if jquery already had a loop() api so I could just take care of it in the script.
<script type="text/javascript">
$(document).ready(function(){
$('.bottom-left').delay(1000).fadeIn(900);
$('.bottom-right').delay(3000).fadeIn(700);
});
</script>
If you want to get complex with it then this could turn into a lot of code but a simple implementation would only be a few lines. Basically you want to recursively call a function that either hides or shows an element from the callback function of the animation function:
Here is a demo: http://jsfiddle.net/xpw4D/
Docs for
.fadeToggle(): http://api.jquery.com/fadeToggleUpdate
You can beef-up this code a bit and animate more than two steps like this:
Here is a demo: http://jsfiddle.net/jasper/xpw4D/2/