function randomThumb(thing) {

	var randomnumber = Math.floor(Math.random()*11);
	var tag = "";
	var img = "";
	var alt = "";
	switch (randomnumber) {

		case 0: tag = "louie-pasture";
			img = "louie_pasture_s.png";
			alt = "Louie Pasture";
			break;
		case 1: tag = "wolfman-mozart";
			img = "wolfman_mozart_s.png";
			alt = "Wolfman Mozart";
			break;
		case 2: tag = "the-count";
			img = "count_fuckula_s.png";
			alt = "The Count";
			break;
		case 3: tag = "thaddeus";
			img = "thaddeus_von_wiggletrousers_s.png";
			alt = "Thaddeus von Wiggletrousers";
			break;
		case 4: tag = "herman";
			img = "herman_s.png";
			alt = "Herman";
			break;
		case 5: tag = "bob-dylan";
			img = "ghost_of_bob_dylan_s.png";
			alt = "The Homeless Veteran Ghost of Bob Dylan";
			break;
		case 6: tag = "uncle-sonnschein";
			img = "uncle_sonnschein_s.png";
			alt = "Uncle S&ouml;nnschein";
			break;
		case 7: tag = "mc-fuzzy-blanket";
			img = "mc_fuzzy_blanket_s.png";
			alt = "MC Fuzzy Blanket";
			break;
		case 8: tag = "braggy-bear";
			img = "braggy_bear_s.png";
			alt = "Braggy Bear";
			break;
		case 9: tag = "matronly-margaret";
			img = "matronly_margaret_s.png";
			alt = "Matronly Margaret";
			break;
		case 10: tag = "appy-pop";
			img = "appy_pop_s.png";
			alt = "Appy-Pop";
			break;
	}

	$("randomLink").href = "/puppet-roll-call/#" + tag;
	$("randomLinkImage").src = "/images/" + img;
	$("randomLinkImage").alt = alt;
}