/* 
    tam js
    
 */

jQuery(function(){
    //sidebarの追従
    $('#sidebar').scrollFollow({speed: 500, offset: getWindowHeight() - $('#sidebar > ul > li').size()*24 - 46 } );
    //エントリーのクリックのトグル動作
    $('div.footer > .comment').click(function(){
        $(this).next().toggle('fast');
    });
    //初回のHTML修正処理
    $(window).ready(function(){
        $('#interactive').hide();
    });
});
function getWindowHeight(){
  if(window.innerHeight) return window.innerHeight; // Mozilla, Opera, NN4
  if(document.documentElement && document.documentElement.clientHeight){ // 以下 IE
   return document.documentElement.clientHeight;
  }
  else if(document.body && document.body.clientHeight){
   return document.body.clientHeight;
  }
  return 0;
}