/* ***********************************************************
 * jQuery Activation Scripts 
 * 
 * Since:          2010-12-20 > Keisuke Inoue
 * Last Modified:  2010-12-20 > Keisuke Inoue
 * Guideline:      Ver.1.00
 * ***********************************************************
 */

/* add class="active" for links to the same path with temporal page */
$(function(){
  var path =     location.pathname;
  path =         path.replace(/index\.html/,"");
/*  var navpath  = path.replace(/^(.+?)\/(.+?)\/.*$/,"$1\/$2\/");*/
  var sidepath = path.replace(/^(.+)\/.*.html$/,"$1\/");

// main navigation
//  $('#nav li a[href$="' + navpath + '"]').attr('class', 'active');

// sidebar navigation
  if ( sidepath ){
    $('#menu li a[href$="' + sidepath + '"]').attr('class', 'active');
  }else{
    $('#menu li a[href$="' + navpath + '"]').attr('class', 'active');
  }
});

