//Here is a special browser-compatibility function. It completely remove all the pictures when the page loads.  
// It uses a javascript onload function found in the body section of the html page
// within the body tag like  body onload=""  with my function name. It targets people withOUT javascript, 
// or those that do not have javascript enabled: since the picture is already loaded into the page, 
// this read-only-by-javascript function goes unheeded, and the pictures are always visible upon page load. On the other hand, 
// if they have javascript, this hidesthe pictures, allowing for the "visible" functions to put those pictures into place 
// with mouse over events.  Previous version used "style.display" set to 'none'.
	function removetext() {
	document.getElementById('textphoto1').style.visibility='hidden';
	document.getElementById('textphoto2').style.visibility='hidden';
	document.getElementById('textphoto3').style.visibility='hidden';
	document.getElementById('textphoto4').style.visibility='hidden';
	document.getElementById('textphoto5').style.visibility='hidden';
	document.getElementById('textphoto6').style.visibility='hidden';
	document.getElementById('textphoto7').style.visibility='hidden';
	document.getElementById('textphoto8').style.visibility='hidden';
	document.getElementById('textphoto9').style.visibility='hidden';
	document.getElementById('textphoto10').style.visibility='hidden';
	document.getElementById('textphoto11').style.visibility='hidden';
	document.getElementById('textphoto12').style.visibility='hidden';
	document.getElementById('textphoto13').style.visibility='hidden';
	};

// Functions to handle mouse overs
	function handlephoto1on () {
	document.getElementById('textphoto1').style.visibility='visible';		
	};

	function handlephoto1off () {
	document.getElementById('textphoto1').style.visibility='hidden';		
	};

	function handlephoto2on () {
	document.getElementById('textphoto2').style.visibility='visible';		
	};

	function handlephoto2off () {
	document.getElementById('textphoto2').style.visibility='hidden';		
	};
	
	function handlephoto3on () {
	document.getElementById('textphoto3').style.visibility='visible';		
	};

	function handlephoto3off () {
	document.getElementById('textphoto3').style.visibility='hidden';		
	};

	function handlephoto4on () {
	document.getElementById('textphoto4').style.visibility='visible';		
	};

	function handlephoto4off () {
	document.getElementById('textphoto4').style.visibility='hidden';		
	};
	
	function handlephoto5on () {
	document.getElementById('textphoto5').style.visibility='visible';		
	};

	function handlephoto5off () {
	document.getElementById('textphoto5').style.visibility='hidden';		
	};

	function handlephoto6on () {
	document.getElementById('textphoto6').style.visibility='visible';		
	};

	function handlephoto6off () {
	document.getElementById('textphoto6').style.visibility='hidden';		
	};
	
	function handlephoto7on () {
	document.getElementById('textphoto7').style.visibility='visible';		
	};

	function handlephoto7off () {
	document.getElementById('textphoto7').style.visibility='hidden';		
	};

	function handlephoto8on () {
	document.getElementById('textphoto8').style.visibility='visible';		
	};

	function handlephoto8off () {
	document.getElementById('textphoto8').style.visibility='hidden';		
	};
	
	function handlephoto9on () {
	document.getElementById('textphoto9').style.visibility='visible';		
	};

	function handlephoto9off () {
	document.getElementById('textphoto9').style.visibility='hidden';		
	};
	
	function handlephoto10on () {
	document.getElementById('textphoto10').style.visibility='visible';		
	};

	function handlephoto10off () {
	document.getElementById('textphoto10').style.visibility='hidden';		
	};

	function handlephoto11on () {
	document.getElementById('textphoto11').style.visibility='visible';		
	};

	function handlephoto11off () {
	document.getElementById('textphoto11').style.visibility='hidden';		
	};
	
	function handlephoto12on () {
	document.getElementById('textphoto12').style.visibility='visible';		
	};

	function handlephoto12off () {
	document.getElementById('textphoto12').style.visibility='hidden';		
	};

	function handlephoto13on () {
	document.getElementById('textphoto13').style.visibility='visible';		
	};

	function handlephoto13off () {
	document.getElementById('textphoto13').style.visibility='hidden';		
	};