
/* A 2-D array of strings with a "row" for each letter.
 * Each "cell" contains the word and an optional URL.
 *
 * Author: Craig Lee Burket, craig@burket.net, 508-376-9072, http://www.burket.net/craig
 */
var words = new Array();

words["A"] = [
	["abandominiums", ""],
	["agritainment",  ""],
	["aibohphobia", ""],
	["alcopops", ""],
	["algeny", ""],
	["allotonality", ""],
	["amerithrax", ""],
	["antipreneurs", ""],
];
words["B"] = [
	["basement universes", ""],
	["biobibliome", ""],
	["bio-Luddites", ""],
	["biomusicology", ""],
	["bliki", ""],
	["blook", ""], 
	["BOAKYAG", ""],
	["bobos", ""],
	["BOHICA", ""],
	["Bosenova", ""],
	["brainlifts", ""],
	["burkini", ""],
];
words["C"] = [
	["Christmukkah", ""],
	["cockapoo", ""],
	["comprestimation", ""],
	["congagement", ""],
	["conlanguage", ""],
	["consumer eugenics", ""],
	["co-opetition", ""],
	["coronaphile", ""],
	["cybrarian", ""],
];
words["D"] = [
	["discretuum", ""],
	["docusoap", ""],
	["droplifting", ""],
];
words["E"] = [
	["earcons", ""],
	["egocasting", "definitions.htm#egocasting"],
	["ekpyrotic universe", ""],
	["ethnotronica", ""],
	["Exodusters", ""],
	["exoself", ""],
	["extelligence", ""],
];
words["F"] = [
	["fauxtography", ""],
	["femtotech", ""],
	["Fermi sea", ""],
	["fewnomials", ""],
	["flood thieving", ""],
	["FOAF harvesters", ""],
	["forensic animation", ""],
];
words["G"] = [
	["galactic cannibalism", ""],
	["gastrobot", ""],
	["gene escape", ""],
	["genetic weapons", ""],
	["Gitmo-ize", ""],
	["green ammunition", ""],
	["greenwash", ""],
	["grey literature", ""],
	["grogue", ""],
];
words["H"] = [
	["heisenbug", ""],
	["horizontal gene transfer", ""],
	["human plankton", ""],
];
words["I"] = [
	["ignart", "definitions.htm#ignart"],
	["in-betweequel", ""],
	["infoproles", ""],
	["iPod oblivion", ""],
];
words["J"] = [
	["", ""],
];
words["K"] = [
	["", ""],
];
words["L"] = [
	["labrahuahua", ""],
	["levitationarium", ""],
	["linguamangler", ""],
	["linguicide", ""],
	["link rot", ""],
	["literary darwinism", ""],
	["lithoacoustics", ""],
];
words["M"] = [
	["margin of litigation", "http://columbus.bizjournals.com/columbus/stories/2004/10/11/story1.html"],
	["McJob", "http://www.spiegel.de/international/0,1518,472971,00.html"],
	["meatspace", ""],
	["memage", ""],
	["microexpressions", ""],
	["micronation", ""],
	["micropolyphony", ""],
	["microscapes", ""],
	["Milkomeda", ""],
	["milkyear", ""],
	["minisodes", ""],
	["molecular gastronomy", ""],
	["monkeysphere", "http://www.pointlesswasteoftime.com/monkeysphere.html"],
	["mutantrumpet", ""],
];
words["N"] = [
	["nanobes", ""],
	["nanoharp", ""],
	["nanoskins", ""],
	["neurobotics", ""],
	["neurophrenology", ""],
	["neurotheology", ""],
];
words["O"] = [
	["OWYS", "http://www.google.com/search?hl=en&rls=GGLJ%2CGGLJ%3A2006-32%2CGGLJ%3Aen&q=%22only+when+you%27re+stoned%22"],
];
words["P"] = [
	["p-branes", ""],
	["pentation", ""],
	["phonemic evolution", ""],
	["plancktech", ""],
];
words["Q"] = [
	["quantum tantra", ""],
];
words["R"] = [
	["recombinomics", "http://www.recombinomics.org/"],
	["reverse outsourcing", ""],
	["rightshoring", ""],
	["robotany", ""],
];
words["S"] = [
	["satisfice", ""],
	["screenager", ""],
	["scrouge", ""],
	["sea quarks", ""],
	["selfplex", ""],
	["sky burial", ""],
	["slammage", ""],
	["software maggot", "definitions.htm#maggot"],
	["spam zombies", ""],
	["sphericon", ""],
	["spin foam", ""],
	["spintronics", ""],
	["subself", ""],
	["stiction", ""],
];
words["T"] = [
	["teamicide", ""],
	["telepistemology", ""],
	["terabaud", ""],
	["tetration", ""],
	["transportainment", ""],
	["typosquatting", ""],
];
words["U"] = [
	["uncanny valley", ""],
	["unholyhedron", ""],
	["unobtainium", ""],
];
words["V"] = [
	["virosphere", ""],
	["viseme", ""],
];
words["W"] = [
	["webliography", ""],
	["whale falls", ""],
];
words["X"] = [
	["", ""],
];
words["Y"] = [
	["yoctotech", ""],
	["yottabyte", ""],
];
words["Z"] = [
	["zimboes", ""],
];

/*
 * Output an HTML table row for each row in the words array.
 */
for (row in words) {
    document.write("<tr><td align=center><b>" + row + "</b></td><td>");
    for (index in words[row]) {
	var cell = words[row][index];
        var word = cell[0];
        var link = cell[1];
        // if the cell has an optional link then use it, else make a Google search link
	var url = (link != "")
		? link
		: "http://www.google.com/search?q=%22" + word + "%22";

	document.write("<a href='" + url + "' target='_blank'>" + word + "</a>");
	if (index < words[row].length - 1) {
	    document.write(", ");
	}
	document.write("&nbsp;");
	}
	document.write("</td></tr>");
}

