$(document).ready(function() {
    $('.nice-menu li ul').hover(
            function() {
                var tagA = $(this).parent();
                tagA.find(":first").css('color', '#0099FF');
            },
            function() {
                var tagA = $(this).parent();
                tagA.find(":first").attr('style', '');
            });
    var now_url;
    now_url = location.pathname;
    now_url = now_url.split('/');
    now_url = now_url[2];

    if (now_url != '') {
        $('#nice-menu-1 a[href*=' + now_url + ']').css('color', '#0099FF');
        $('#nice-menu-1 ul a[href*=' + now_url + ']').attr('style', '');
    }
});

