<!--

var aktiv = window.setInterval("move_around()", 1);
var i = 0, ax = -236, bx = -236, cx = -236;

function move_around () {
  var ElementA = getElement ("id", "my_moving_layer_a", 0);
  var ElementB = getElement ("id", "my_moving_layer_b", 0);
  var ElementC = getElement ("id", "my_moving_layer_c", 0);
  i = i + 5;
  atop = "92px" ;
  btop = "297px" ;
  ctop = "504px" ;
  aleft = ax + "px" ;
  bleft = bx + "px" ;
  cleft = cx + "px" ;
  if (ax <= 216) {
    ax = ax + 5 ;
    ElementA.style.left = aleft ;
    ElementA.style.top = atop ;
  }
  if (i > 120 && bx <= 596) {
    bx = bx + 5 ;
    ElementB.style.left = bleft ;
    ElementB.style.top = btop ;
  }
  if (i > 900 && cx <= 216) {
    cx = cx + 5 ;
    ElementC.style.left = cleft ;
    ElementC.style.top = ctop ;
  }
  if (i >= 2000)
    window.clearInterval(aktiv);
}


//-->
