function breadcrumbs(){
  sURL = new String;
  bits = new Object;
  var x = 0;
  var stop = 0;
  var output = "";
  if(typeof(nan_home)=="undefined")
  {
		output = "<font color='#999999'><a href=\"http://www.nationalable.org\">National Able Network</a></font>";  
  }
  else
  {
	  output = "<font color='#666666'><a href=\"http://www.nationalable.org\">National Able Network</a></font>";
  }
  
  sURL = location.href;
  sURL = sURL.slice(8,sURL.length);
  chunkStart = sURL.indexOf("/");
  sURL = sURL.slice(chunkStart+1,sURL.length)
  while(!stop){
    chunkStart = sURL.indexOf("/");
    if (chunkStart != -1){
      bits[x] = sURL.slice(0,chunkStart)
      sURL = sURL.slice(chunkStart+1,sURL.length);
    }else{
      stop = 1;
    }
    x++;
  }
  for(var i in bits){
    output += "&nbsp;&nbsp;>&nbsp;&nbsp;<a href=\"";
    for(y=1;y<x-i;y++){
      
      
      	output += "../";
      
    }
	 	
    	output += bits[i] + "/\">";
		bits[i] = bits[i].replace(/-/g,"&nbsp;");
		output += bits[i].replace("%2D", "&#45;") + "</a>";
		
  }
  if (page != "")
  {
  		document.write(output + "&nbsp;&nbsp;>&nbsp;&nbsp;<font color='#666666'>" + page + "</font>");
  }
  else
  {
	    document.write(output + "<font color='#666666'>" + page + "</font>");
  }
  
}
