
          
    var path = 'Practice-Startup-Services';

    if(path.length>0){

        var paras = $(document.getElementsByTagName('a'));

        ind = 0;

        jQuery.each( paras , function() {

            ancs = $(this).parents();
            myparent = ancs[0];

            if (
              ($(this).attr('href').endsWith('/Practice-Startup-Services.aspx') ||
                $(this).attr('href').endsWith('?path=Practice-Startup-Services') ||
                $(this).attr('href') == 'Practice-Startup-Services' ) &&
              ($(myparent).hasClass('acc_subnav') || 
                $(myparent).hasClass('acc_subnav2') || 
                $(myparent).hasClass('acc_subnav3'))
            ) {

                $(this).css('color','red');

                $(ancs).each(function() {

                    if ($(this).prev() && $(this).prev().hasClass('expandable')) {
                        
                        $(this).show();

                    }

                });

                if($(this).parent().hasClass('expandable'))
                    $(this).parent().next().show();
            }
        });
    }
