function random_quotation()
{
	var total = 8;
	var choice = parseInt(Math.random()*total);
	var quotation = new Array(total);
	var index=0;

	quotation[index++] = 'Unearth mead';
	quotation[index++] = 'Bringing mead from the past to the future';
	quotation[index++] = 'Follow the<br>educated barbarian';
	quotation[index++] = 'Mead: from berserkers<br>to connoisseurs';
	quotation[index++] = 'Wasssssaaaiiil!';
	quotation[index++] = '<i>Mead made complicated</i>:<br>Mead in the details';
	quotation[index++] = 'The mead experience';
	quotation[index++] = 'Spread the word of mead';

	document.write(quotation[choice]);
}
