<!-- Begin
// Version 1.00
// Copyright 2005, Virtual Solutions. Restricted use is hereby granted (both personal and commercial use allowed so long as this code is 
// not sold, or distributed in altered form), providing this header is fully maintained. [http://www.monster-submit.com]
var base = "http://www.mstill.com";
var altbase = "http://mstill.com";
var url = location.href;
var parts = url.split(base);
if (! parts[1]) {
	base = altbase;
	parts = url.split(altbase);
}
var segs = parts[1];
var segs = segs.split("/");
var ahref = base;
document.write('<a class="special" href="' + base + '">Home</a> > ');
for (var loop = 1; loop < segs.length; loop++) {
	var str = doCase(segs[loop]);
	ahref	= ahref + "/" + segs[loop];
	document.write('<a class="special" href="' + ahref + '">');
	document.write(str);
	if (loop == (segs.length - 1)) { document.write('</a>'); }
	else { document.write('</a> > '); }
}
function doCase(str) {
//	return(str.charAt(0).toUpperCase() + str.substr(1).toLowerCase());
	return(str);
}
// End -->