// onLoad...
if(window.addEventListener){
   window.addEventListener('load',PrintPhotoNotice,false);
 }
else { 
if(window.attachEvent){
   window.attachEvent('onload',PrintPhotoNotice);
  }
 }

function PrintPhotoNotice() {
	var photocredit = "<span class='photocredit'>*Photos courtesy of Paul Lender and Left of Center Photography</span>";
	var contentElement = document.getElementById("content");
	if (contentElement != null)
	{
		document.getElementById('content').innerHTML = document.getElementById('content').innerHTML + photocredit;
	}
	else {
		document.getElementById('contentwide').innerHTML = document.getElementById('contentwide').innerHTML + photocredit;	
	}
}


