/*	Random Phrase Generator 
	(c) 2009 Eric Reif, http://crazydrumguy.com
*/

var phrases = [
	'Something witty',
	'C\'est ne pas une blog',
	'Yes, I can', 
	'I am aware of all internet traditions',
	'It\'s a trap',
	'This message will self-destruct'
	];

var phrase = Math.floor(Math.random()*(phrases.length));

document.write(phrases[phrase]);