// 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] = '<blockquote class=&quot;quotes&quot;> <h5>I saw the angel in the marble and carved until I set him free.</h5> <p>Michelangelo</p></blockquote>'
	myResources[1] = '<blockquote class=&quot;quotes&quot;>	<h5>I found Rome a city of bricks and left it a city of marble.</h5> <p>Caesar Augustus</p></blockquote>'
	myResources[2] = '<blockquote class=&quot;quotes&quot;>	<h5>From a short-sided view, the whole moving contents of the heavens seemed to them a parcel of stones, earth and other soul-less bodies, though they furnish the sources of the world order.</h5>  <p>Michelangelo</p></blockquote>'
	myResources[3] = '<blockquote class=&quot;quotes&quot;>	<h5>From a short-sided view, the whole moving contents of the heavens seemed to them a parcel of stones, earth and other soul-less bodies, though they furnish the sources of the world order.</h5>  <p>Michelangelo</p></blockquote>'
	arrayResources(myResources);
	for (i=0; i<=0; i++) {
		document.write(myResources[i]);
	}
	document.write("</ul>");
}
