	//	This script changes values on the page based on the values set by "whichpic" (this)
	//	You'll need a placeholder Image with the id "pic".
	//  Based on a script written by Jeremy Keith.		


	function changePic (whichpic) {	
		if (document.getElementById) {	
			document.getElementById('pic').src = whichpic.href;
			
			
			
			


			return false; 
		} else { 
			return true; 
		} 

	}