//-----------------------------------------------------------
// 一覧の表示
//


function window_size_get(){
  snwidth  = document.documentElement.clientWidth - 150;
  snheight = document.documentElement.clientHeight- 100;

  bowidth  = document.documentElement.clientWidth - 10;
  boheight = document.documentElement.clientHeight- 10;


  snwidth  = 50 * Math.floor(snwidth  / 50) 
  snheight = 50 * Math.floor(snheight / 50) 
  bowidth  = 50 * Math.floor(bowidth  / 50) 
  boheight = 50 * Math.floor(boheight / 50) 


}
window_size_get();


$(document).ready(function(){


  $(window).resize( function(){
    window_size_get();
  });

  $('.detailbutton').click(function(){
    // 引数には開閉する速度を指定します
    $('.searchmenu_body').slideToggle('slow');
  });

});






