// Copyright (C) 伊織舞也 (http://www.losttechnology.jp/)
// 著作権表示を消さなければご自由にお使いください
function bgScroll(id,x,y,w,h,ax,ay,timing) {
  if ((document.all)||(document.getElementById)) {
    c=(document.all)?document.all(id).style:document.getElementById(id).style;
    x+=ax;
    y+=ay;
    if (x<0) x=w;
    if (x>w) x=0;
    if (y<0) y=h;
    if (y>h) y=0; 
    c.backgroundPosition=x+'px '+y+'px';
    setTimeout('bgScroll("'+id+'",'+x+','+y+','+w+','+h+','+ax+','+ay+','+timing+')',timing);
  }
}
