

function randfrom(arr){	return arr[Math.round((arr.length-1)*Math.random())]; }
function shuffle(){
	verb = randfrom(['surfing','riding','browsing','navigating','downloading','exploring','logging on to','hacking','connecting to','linking with']);
	noun = randfrom(['inter','cyber','info','e-','virtua','web']);
	noun += randfrom(['web','tron','net','stream','space','tube','sphere','site','highway']);
	str = verb+' the '+noun+((Math.round(Math.random()))?'s':'')+' since '
	str += '<a href="javascript:shuffle();">1993</a>';
	$('shuffle_target').innerHTML = str;
}
window.addEvent('domready', shuffle );