   wavs = new Array('http://toshis.jp/sounds/click.mp3'); 
   Hrefs = new Array('http://toshis.jp/blog/cat16/'); 
   function sound_on(n){ 
       t = n; 
       document.getElementById('sound').src = wavs[t]; 
       setTimeout('JumpToNextPage(t)',3000); 
   } 
   function JumpToNextPage(n){ 
       location.href = Hrefs[n]; 
   } 

