
// Written by Jeff Howden
// http://evolt.org/user/15
// Modified by WeDoWebSites.com.au

  function breadcrumbs(sClass, sDelimiter)
  {
    if(!sDelimiter) sDelimiter = '/';
    var sURL = (location.pathname.indexOf('?') != -1) ? location.pathname.substring(0, location.pathname.indexOf('?')) : location.pathname;
        sURL = (location.pathname.charAt(0) == '/') ? location.pathname.substring(1) : location.pathname;
    var aURL = sURL.split('/');

    if(aURL)
    {
      var sOutput = '<a href="/">home</a> ' + sDelimiter + ' ';
      var sPath = '/';
      for(var i = 0; i < aURL.length; i++)
      {
        sPath += aURL[i] + '/';
        sOutput += '<a href="' + sPath + '"';
        if(sClass) sOutput += ' class="' + sClass +'"';
        sOutput += '>' + aURL[i] + '</a>';
        sOutput += ' ' + sDelimiter + ' ';
      }
//      sOutput += document.title;
//      document.write(sOutput);
      document.write('You are here: ' + sOutput.substr(0,sOutput.length-2));
    }
  }

