
<!--
// ウィンドウを揺らす
itv = 100; // ウィンドウを揺らす間隔(ミリ秒単位)
cnt = 0;
// ウィンドウを揺らすパターン。x座標・y座標
x = new Array( 12,-20, 8,-16, 20, -4, 16, -8, 4,-12,0);
y = new Array(-20, 8,-16, 12,-12, 16, -4, 20, -8, 4,0);
function quakeWindow() {
  if(x[cnt] != 0) moveBy(x[cnt],y[cnt]);
  cnt++;
  if(cnt < x.length) setTimeout("quakeWindow()",itv);
  else cnt = 0;
}
//-->
