
$(function(){
					 
	var path = location.pathname;
	path = path.replace(/^(.*)\/hks\/warebita\/(\w*)\/(\w*)\.html$/, '$2');
	path = path.replace(/^(.*)\/hks\/warebita\/(\w*)\/$/, '$2');

	$('#side_war .nav li').each(function(){
		var path2 = $('a',$(this)).attr('href')
		path2 = path2.replace(/^(.*)\/hks\/warebita\/(\w*)\/$/, '$2');
		if(path == path2){
			$('a',$(this)).addClass('current');
		}
	});

});

