var quotes = ["Entia non sunt multiplicanda praeter necessitatem"];function newImage(arg) {	if (document.images) 	{		rslt = new Image();		rslt.src = arg;		return rslt;	}}function changeImage(id, newSrc) {	if (document.images && (preloadFlag == true)) 	{		document.getElementById(id).src = newSrc;	}}var preloadFlag = false;function preloadImages() {	if (document.images) 	{		home_over = newImage("images/home-over.gif");		essays_over = newImage("images/essays-over.gif");		photographs_over = newImage("images/photographs-over.gif");		resume_over = newImage("images/resume-over.gif");		preloadFlag = true;	}}function contactJimothy(){	var s1 = ["lto", ":ji", "moth", "y@m", "ac" , ".co", "m"];	var s2 = "mai";	for (var i = 0; i < s1.length; i++)	{		s2 += s1[i];	}		window.location = s2;}function printQuote(){	var index = Math.floor(Math.random() * quotes.length);	document.write(quotes[index]);}