function pickWord() {
	var pikW;
	var fraz = new Array('Strangely Transfixed','Powered by Riboflavin',
	'Cogito ergo sum',
	'Batteries not included',
	'Heat before serving',
	'Freshness guaranteed',
	'External use only',
	'Squeeze from the bottom',
	'Sharp as a tack',
	'Not for underwater use');

	pikW=(Math.floor(Math.random()*fraz.length));
	document.write(fraz[pikW]);
}


