var thisURL;
var tmpURL;
thisURL=self.location.href;
if (thisURL.indexOf("//")>0)
{
 thisURL=thisURL.substr(2+thisURL.indexOf("//"));
 if (thisURL.indexOf("/")>0)
 {
  endPos = thisURL.lastIndexOf("/");
  startPos = 1+thisURL.indexOf("/");
  thisURL = thisURL.substr(startPos,endPos-startPos);
 }
}
if (thisURL.substr(0,1)=="/")
{
 thisURL=thisURL.substr(1);
}
thisURLArray=thisURL.split("/")
linkSoFar="/"
linkSoFar=linkSoFar+thisURLArray[0] + "/" + thisURLArray[1] + "/";
for (i=2;i<thisURLArray.length;i++)
{
  linkSoFar=linkSoFar+thisURLArray[i];
  document.write("<span class='navline'><a href='" + linkSoFar + "/'>"+thisURLArray[i].replace(/_/g," ").replace(/\//g," | ")+"</a></span> <span class='navline'>|</span> ")
  linkSoFar=linkSoFar+"/"
};
document.write("<span class='navititle'>"+this.document.title.replace(/_/g," ")+"</span>")