// JavaScript Document

function arrayResources (myArray) {
	var i = myArray.length;
	if (i == 0) return false;
	while ( --i ) {
		var j = Math.floor(Math.random() * (i + 1));
		var tempi = myArray[i];
		var tempj = myArray[j];
		myArray[i] = tempj;
		myArray[j] = tempi;
	}
}

function writeResources() {
	var myResources = new Array()
	myResources[0] = '<p>&quot;If you don’t like Gaido’s, you don’t know seafood!&quot;</p>-Geneva E. <br />Midland, Texas'
	myResources[1] = '<p>&quot;These people know fish!&quot;</p> - Jim M. <br/>Cypress, Texas'
	myResources[2] = '<p>&quot;A fresh approach to seafood.&quot;</p> -Ross P. <br/>Houston, Texas'
	arrayResources(myResources);
	for (i=0; i<=0; i++) {
		document.write(myResources[i]);
	}
	document.write("</ul>");
}