var theurl = document.location.href;
var x = 0;
var y = new Array(1);
var z = new Array(1);

document.write("<a href=\"/\" style=\"color:#444444;\">cagrimmett.com</a> ");
y[0] = "";
z[0] = "";

var cap = 0;
count = 0;
var i = 0;
var start = 0;

for(i = start; i < theurl.length; i++)
{
	if(theurl.charAt(i) != "/")
	{
		y[x] += theurl.charAt(i);
		
		if ( cap == 1 )
		{
			var d = theurl.charAt(i);
			z[x] += d.toUpperCase();
			cap = 0;
		}
		else if ( theurl.charAt(i) == "_" )
		{
			z[x] += ' ';
		cap = 1;
		}
		else
		{
			z[x] += theurl.charAt(i);
		}
	}
	else
	{			
		x++;
		i++;
		var d = theurl.charAt(i);
		y[x] = d;
		z[x] = d.toLowerCase();
	}
}
for (i=2; i<=x-1; i++)
{
	document.write(" &#187; " + "<a style=\"color:#444444;\" href=\"/" );
	
	for ( j=1; j<=i; j++ )
	{
		 document.write(y[j] + "/");
	}
	
	document.write("\">" + z[i] + "</a>");
}
