Can't figure out how to impliment jbreadcrumbs

Can't figure out how to impliment jbreadcrumbs

I am trying to take my existing breadcrumb asp.net navigation string to use the jbreadcrumb plugin. I tried changing the css of the div's containing the dynamically generated navigation string but couldn't make it work. Do to size of post, I am only enclosing the code for the breadcrumb. I am hoping someone can help point me in the correct direction of modifying the existing layout. Thanks for your help in advance.
<%# CreateNavStringFromKeywordSearch(XPath("searchHistory/dynamicNavigationHistory/keywordSearch/originalKeyword"), XPath("searchHistory/dynamicNavigationHistory/keywordSearch/resultKeyword"), XPath("searchHistory/categorySelection[last()]/@id"))%>

<asp:Repeater DataSource='<%# XPathSelect("searchHistory/dynamicNavigationHistory/attributeSelection") %>' runat="server">
<ItemTemplate><%# CreateNavStringFromDynamicNavigationHistory(XPath("@dropped"), XPath("@id"), XPath("name"))%></ItemTemplate>
</asp:Repeater>

    <%If String.IsNullOrEmpty(NavString) Then %>

       <asp:Repeater DataSource='<%# XPathSelect(NavTag) %>' runat="server">
        <ItemTemplate>

          <%# CreateNavStringFromProductSelection(XPath("productSelection/name"), XPath("count(productSelection[@id])"))%>

          <%# GetNavString3(XPath("count(dynamicNavigationHistory/attributeSelection[@id])"), _
                            XPath("count(productSelection[@id])"), _
                            XPath("categorySelection[last()-2]/@id"), _
                            XPath("categorySelection[last()-2]/name"), _
                            XPath("categorySelection[last()-1]/@id"), _
                            XPath("categorySelection[last()-1]/name"), _
                            XPath("categorySelection[last()]/@id"), _
                            XPath("categorySelection[last()]/name"), _
                            XPath("categorySelection[last()]/categoryURL"))%>
        </ItemTemplate>
       </asp:Repeater>

    <%Else%>
      <%=NavString%>
    <%End If%>