// JavaScript Document
	/* From http://www.alistapart.com/articles/imagegallery */
		function showPic (whichpic) {
			if (document.getElementById) {
				document.getElementById('mainimage').src = whichpic.href;
				  /* 
				  IE and firefox treat carriage return line feeds in the HTML document differently
				  			FireFox and Safari  sees each as a node IE doesn't 
				  			- so if you're using node numbers you have to make sure your HTML code is all on the same line
				  			-		so all browsers count the same number of nodes.
				  */
				  return false;
				 } else {
				  return false;
			 	 }
			 return true;
		} 