	// The Array Function 	function makeArray(len) {	    for (var i = 0; i < len; i++) this[i] = null;	this.length = len;	}	// This is where random quotes are pulled from. The number in parenthesis after 'makeArray' should be the same as the number of items in the list.	sidebar = new makeArray(7);	sidebar[0] = "<p> &ldquo; I like how my doctors appeared to have time to talk to me about my condition about medication I'm about to take. I know that they are busy but still answer all my questions. &rdquo;<br />&#8211; from a recent patient survey</p>";	sidebar[1] = "<p> &ldquo; Everybody in radiation was very nice and caring. They touched my human spirit. &rdquo;<br />&#8211; from a recent patient survey</p>"	sidebar[2] = "<p> &ldquo; I like how my doctors appeared to have time to talk to me about my condition about medication I'm about to take. I know that they are busy but still answer all my questions. &rdquo;<br />&#8211; from a recent patient survey</p>"	sidebar[3] = "<p> &ldquo; This place feels like &#8216;coming home.&#8217; &rdquo;<br />&#8211; from a recent patient survey</p>"	sidebar[4] = "<p> &ldquo; All staff in this department from the front door until you finish each radiation treatment have made my family and myself overcome the fear and anxieties I experienced when first told of prostrate cancer. I thank all of you in this department and I will always remember you with love and sincere thanks! &rdquo;<br />&#8211; from a recent patient survey</p>"	sidebar[5] = "<p> &ldquo; The whole staff is marvelous. &rdquo;<br />&#8211; from a recent patient survey</p>"	sidebar[6] = "<p> &ldquo; Outstanding care. I have always been completely happy with my treatment and care at the University of Chicago &rdquo;<br />&#8211; from a recent patient survey</p>"	// The random number generator.	function rand(n) {	seed = (0x015a4e35 * seed) % 0x7fffffff;	return (seed >> 16) % n;	}        	var now = new Date()	var seed = now.getTime() % 0xffffffff