Writting a jQuery Loop?

Writting a jQuery Loop?

I've got this code, but I need to make it loop?
  1. jQuery(function($) {
  2. var timer;
  3. function Cloud(event)
  4. {
  5.      $("#cloud").css("opacity","0");
  6.      $("#cloud").css("left","-600px");
  7.     $("#cloud").animate({"opacity":1,"left":1600},20000, "linear", null);
  8.      $("#cloud").css("left","1024px");
  9.     $("#cloud").animate({"left":-600},20000, "linear", null);
  10. }

  11. Cloud();

  12. });
If anyone could help I'd be much appreciative.

Thanks,
Chris