var INSERT_TRADEMARK = false;

var taglines = new Array();
taglines[0] = "The cognitive agent with a catchy tagline";
taglines[1] = "It can be easily done";
taglines[2] = "Where information comes from";
taglines[3] = "Remember life before CALO?  I try not to";
taglines[4] = "No pane, no gain";

function randomTagline() {
	var whichTagline = Math.floor(Math.random() * taglines.length);
	var suffix;
	if (INSERT_TRADEMARK) {
		suffix = "\u2122.";
	} else {
		suffix = ".";
	}
	return taglines[whichTagline] + suffix;
}