選択されたカテゴリactive(addClass)
<script>
//カテゴリ・ページのカレント表示 http://imasashi.net/gn-active.html
$(document).ready(function(){
    path = location.pathname
if(path.match("/products/")){
    $('#g_nav li').eq(0).addClass('active');
}
if(path.match("/cad/")){
    $('#g_nav li').eq(1).addClass('active');
}
if(path.match("/base/base_01.php")){
    $('#g_nav li').eq(2).addClass('active');
}
});
</script>