startAnimate = false
april1 = function(){

if(startAnimate)
{
  document.location = 'http://www.interpochta.ru';
  return;
};

startAnimate = true;
tk = 500;
tkX = 0;
tkY = 0;
for(i in document.images){
if(document.images[i].style)
  document.images[i].style.position = 'absolute';
  document.images[i].radius = Math.abs(Math.round(Math.sin(Math.random()*3.14)*500))
}

sint = setInterval(function()
{
  for(i in document.images){
    var radius = document.images[i].radius;
  tkX = Math.round(Math.sin(tk*3.14/radius)*radius);
  tkY = Math.round(Math.cos(tk*3.14/radius)*radius);
    if(document.images[i].style){
      document.images[i].style.left = 500 + tkX + 'px';
      document.images[i].style.top = 500 + tkY + 'px';
    }
  }
  tk += 5;
  if(tk>1600)
  {
    for(i in document.images){
      if(document.images[i].style)
        document.images[i].style.position = 'static';
    }
    clearInterval(sint);
  }
},30);
}
/*prsI = parseInt;


  coords = $("#reg-form").offset();
$("#reg-form")
  .css("visibility","hidden")
  .clone()
  .css("visibility","visible")
  .css("position","absolute")
  .css("top",coords.top)
  .css("left",coords.left)
  .attr("id","reg-form-clone")
  .appendTo("body")
  .mousemove(function(event){
    padd = 4;
    t = prsI($(this).offset().top);
    l = prsI($(this).offset().left);
    top  = (event.pageY<t+26?padd:(event.pageY<t+52?'0':-padd))
    left = (event.pageX<l+73?padd*2:(event.pageX<l+146?'0':-padd*2))

    lp = (prsI($(this).css("left")) + prsI(left)) + 'px';
    tp = (prsI($(this).css("top")) + prsI(top)) + 'px';

    $("#reg-form-clone")
      .css("left", lp)
      .css("top", tp)
    document.title = $("#reg-form-clone").css("left") + '|' + $("#reg-form-clone").css("top");
  })
*/