$(document).ready(function () {
    var path = window.location.pathname;
    var pathname = path.split('/');
    var tester = pathname[pathname.length - 1];

    $('ul.list_nav li a').each(function () {
        var test = $(this).attr('href');
        if (test == tester) {
            $(this).addClass('current');
        }
    });
});

//$(document).ready(function () {
//    var path = window.location.pathname;
//    var pathname = path.split('/');
//    var tester = pathname[pathname.length - 1];

//    $('ul.list_nav.t1 li a').each(function () {
//        var test = $(this).attr('href');
//        if (test == tester) {
//            $(this).addClass('current');
//        }
//    });
//});







