// this function is a piece of shit but you can steal it if you want.
// love, mkm

function linkGenerator(){
	
	adjectives = [
				"skeletal",
				"amoebic",
				"hyperbolic",
				"abysmal",
				"dire",
				"humane",
				"uninviting",
				"wretched",
				"loving",
				"acquitted",
				"viral",
				"negotiable",
				"benevolent",
				"voracious",
				"jesting",
				"liable",
				"fucked",
				"worthy",
				"motherly",
				"tilted",
				"neutered",
				"limp"
				];
	
	nouns = [
			"boners",
			"badgers",
			"iroquois",
			"antics",
			"longevity",
			"remorse",
			"penguins",
			"bears",
			"albatrosses",
			"vanity",
			"elegance",
			"milkshakes",
			"baffoons",
			"zombies",
			"strategists",
			"warriors",
			"cakeholes",
			"tacos",
			"limbo",
			"claymore",
			"titfucking",
			"cocks"
			];
			
	adjective = adjectives[Math.floor(Math.random() * adjectives.length)];		
	noun = nouns[Math.floor(Math.random() * nouns.length)];
	document.write("<a href='http://images.google.com/images?q="+adjective+"%20"+noun+"'>Browse images of "+adjective+" "+noun+".</a>");
}
