function fill_table()
{
	var cliches = new Array();
	var j;
	var tmp;

	cliches[0] = "at the end of the day";
	cliches[1] = "game of two halves";
	cliches[2] = "a real 6 pointer";
	cliches[3] = "giving 110%";
	cliches[4] = "giving 200%";
	cliches[5] = "crucial game";
	cliches[6] = "crunch match";
	cliches[7] = "both teams have set out their stalls";
	cliches[8] = "stroking the ball";
	cliches[9] = "throw the form book out of the window";
	cliches[10] = "[s]he's on fire";
	cliches[11] = "[s]he's in space";
	cliches[12] = "the fans have gone wild";
	cliches[13] = "they think it's all over";
	cliches[14] = "special: <b>any</b> mention of <b>any</b> event in 1966";
	cliches[15] = "fresh legs";
	cliches[16] = "stick to their game plan";
	cliches[17] = "early doors";
	cliches[18] = "special: any use of 'literally' to mean 'figuratively'";
	cliches[19] = "wake-up call";
	cliches[20] = "last chance saloon";
	cliches[21] = "special: terrible puns based on players names, such as 'Suzuki's run out of petrol'";
	cliches[22] = "battle of the giants";
	cliches[23] = "clash of the titans";
	cliches[24] = "minnows";
	cliches[25] = "giant-killers";
	cliches[26] = "it's a marathon not a sprint";
	cliches[27] = "in the zone";
	cliches[28] = "they can go the distance";
	cliches[29] = "spotter's badge";
	cliches[30] = "plus &ccedil;a change, plus c'est la m&ecircme chose [also valid if in English]";
	cliches[31] = "they can play a bit";
	cliches[32] = "special: commentator contradicting self within one sentence";
	cliches[33] = "special: any type of mixed metaphor";
	cliches[34] = "special: mixed metaphors involving impossible images, such as 'treading on dangerous water'";
	cliches[35] = "I've seen a lot of... in my time, but";
	cliches[36] = "the greatest... ever";

	for (var i = 0; i < cliches.length; i++)
	{
		j = Math.floor(Math.random()*(cliches.length + 1));
		tmp = cliches[i];
		cliches[i] = cliches[j];
		cliches[j] = tmp;
	}

	t1.innerHTML = cliches[1];
	t2.innerHTML = cliches[2];
	t3.innerHTML = cliches[3];
	t4.innerHTML = cliches[4];
	t5.innerHTML = cliches[5];
	t6.innerHTML = cliches[6];
	t7.innerHTML = cliches[7];
	t8.innerHTML = cliches[8];
	t9.innerHTML = cliches[9];
	t10.innerHTML = cliches[10];
	t11.innerHTML = cliches[11];
	t12.innerHTML = cliches[12];
	t13.innerHTML = cliches[13];
	t14.innerHTML = cliches[14];
	t15.innerHTML = cliches[15];
	t16.innerHTML = cliches[16];
}

