// JavaScript Document


function showPhoto(thisImage){
	var imageDiv = document.getElementById('CurrentImage');
	var imageHolder = document.getElementById('ImageHolder');
	var thebg = document.getElementById('totalBG');
	var theTxt = document.getElementById('titleTextArea');
	if(imageHolder.src != 'images/photos/'+thisImage){
		imageDiv.className = 'imgHide';
		imageHolder.src = 'images/photos/'+thisImage;
	}
	thebg.className = 'withBG';
	imageDiv.className = 'imgShow';
	if(theTxt!=null){
		theTxt.className = 'titleTxtBlack';
	}
return true;
}

function closePhotos(){
	var imageDiv = document.getElementById('CurrentImage');
	var thebg = document.getElementById('totalBG');
	var theTxt = document.getElementById('titleTextArea');
	imageDiv.className = 'imgHide';
	thebg.className = 'withoutBG';
	if(theTxt!=null){
		theTxt.className = 'titleTxt';
	}
return true;
}
