document.observe('dom:loaded', function () {
	$$('#breadcrumb ul').each(function (breadcrumb) {
		var li = new Element('li'),
			strong = new Element('strong');
		
		strong.update(document.title.replace(/^Colman Coyle \| /, ''));
		li.insert(strong);
		li.setStyle({ background: 'none !important' });
		
		breadcrumb.insert(li);
	});
});