(function{

var verbs = ['surfing','riding','browsing','navigating','downloading','exploring','logging on to','hacking','connecting to','linking with'],
nouns = ['web','tron','net','stream','space','tube','sphere','site','highway'],
prefixes = ['inter','cyber','info','e-','virtua','web'],
verb, noun;

function randfrom(arr){	return arr[Math.round((arr.length-1)*Math.random())]; };

function shuffle(){
	verb = randfrom(verbs);
	noun = randfrom(prefixes) + randfrom(nouns);
	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 );

})();