String.prototype.trunc = function(n) {
	return this.substr(0,n-1)+(this.length>n?'...':'');
};

$(document).ready(function() {
	// truncate post titles in the breadcrumb, don't want them to wrap
	$('li.title', '#breadCrumb').each(function(i) {
		title = $(this).html();
		new_title = title.trunc(26);
		$(this).html(new_title);
	});
});
