// Breadcrumb JavaScript Document

// Code to get the page title after the right-most vertical bar in document.title. Dan Mendelsohn 5/16/2008

var shortTitle=document.title;
var barLocation=0;
while (barLocation != -1) {
            barLocation=shortTitle.indexOf('|');
            if (barLocation != -1) {
                        iLen=String(shortTitle).length;
                        shortTitle=String(shortTitle).substring(iLen, barLocation + 2);
            }
}

// End code to get the page title after the right-most vertical bar, by Dan Mendelsohn


function breadCrumbs(base,delStr,defp,cStyle,tStyle,dStyle,nl) { // by Paul Davis - http://www.kaosweaver.com
loc=window.location.toString();subs=loc.substr(loc.indexOf(base)+base.length+1).split("/");
 document.write('<a href="'+getLoc(subs.length-1)+defp+'" class="'+cStyle+'">Spine Center</a>  '+'<span class="'+dStyle+'">'+delStr+'</span> ');
 a=(loc.indexOf(defp)==-1)?1:2;for (i=0;i<(subs.length-a);i++) { subs[i]=makeCaps(unescape(subs[i]));
 document.write('<a href="'+getLoc(subs.length-i-2)+defp+'" class="'+cStyle+'">'+subs[i]+'</a>  '+'<span class="'+dStyle+'">'+delStr+'</span> ');}
 if (nl==1) document.write("<br>");document.write('<span class="'+tStyle+'">'+shortTitle+'</span>');
}
function makeCaps(a) {
  g=a.split(' ');for (l=0;l<g.length;l++) g[l]=g[l].toUpperCase().slice(0,1)+g[l].slice(1);
  return g.join(" ");
}
function getLoc(c) {
  var d="";if (c>0) for (k=0;k<c;k++) d=d+"../"; return d;
}
