window.onload = function() {
	var taglines = [
		"yesterday’s technology tomorrow",
		"tomorrow’s technology yesterday",
		"best chilled for 20 minutes before serving",
		"now HTML5-enabled",
		"not at all inspired by any beer commercials",
		"not particularly nurtured by any interest in astronomy",
		"because dinner parties are underrated by some",
		"in defense of cheeseburgers, usury, swine, and wine",
		"not improved when read aloud in an english accent",
		"<abbr title='plain old semantic HTML'>posh</abbr> before anyone coined the term",
		"ribbit ribbit ribbit"
		];
	var tagline = taglines[Math.floor(Math.random()*taglines.length)];
	var tle = document.getElementById('tagline');
	tle.innerHTML = tagline;
};


