var windowWidth = null;
 var windowHeight = null;
 var columnNum = null;

 $(function(){
  // onload時のウィンドウサイズを取得
  var windowWidth = $('html').attr('clientWidth');
  var windowHeight = $('html').attr('clientHeight');
  // #contents内のdiv.sectionの数を取得　※垂直方向のみとする場合は1
  //var columnNum = $('#contents > div.section').length;
  var columnNum = 2;
  // .containerの幅よりもウィンドウサイズが小さい場合は、defaultWidth(.containerの幅)を適用
  var defaultWidth = 950;
  var windowWidth = (windowWidth >= defaultWidth) ? windowWidth : defaultWidth;
  
　//#contentsの幅を設定
  $('#contents').css("width", windowWidth * columnNum + "px");
  //#wrap , #contents div.sectionの幅と高さを設定
  $('#wrap , #contents div.section').css("width", windowWidth + "px").css("height", windowHeight + "px");
  
  // localScrollの初期化
  $('#nav').localScroll({
   target:'#wrap',
   axis:'xy'/*,
   //queue:true*/
  });
  
  // jBreadCrumbの初期化
  $('#nav-bread').jBreadCrumb({
   overlayClass: 'separator',
   previewWidth: '3em'
  });
  
  // pageSlideの初期化
  $('a.pageslide').pageSlide({
   width: "250px"
  });
  
 });
