function insertBreadcrumbs(){
	var path = window.location.pathname;
	var folders = path.split("/");
	folders.pop();
	folders.shift();
	var output = '<a href="/">Home</a>';
	for( x=0; x<folders.length;  x++) {
		output += ' > ';
		output += '<a href="/';
		for( y=0; y<=x; y++) {
			output += folders[y] + '/';
		}
		output += '">' + folders[x].replace(/-/g, " ") + '</a>';
	}
	
	document.write(output);
}