{control breadcrumbs}
    <script>

        Hook.register(
            'showroom.breadcrumbs',
            function() {
               $('#crumbs').find('a').eq(1).replaceWith(function(){
                   return '<a>' + $(this).text() + '</a>';
               });
            }
        );

    </script>