/*

	slideshow.js
	
	Created:  3.4.2005
	Creator:  Matt Kircher
	Modified: 
	
*/

/*--------------------------------*/
function showImg(img, t){
	 document.getElementById("slideshowImg").src = img;
	 document.getElementById("slideshowImg").title = t;
	 document.getElementById("slideshowImg").alt = t;
	 document.getElementById("slideshowImg").style.visibility = "visible";
	 
	 document.getElementById("slideshowCap").innerHTML = t;
	 return;
}

/*--------------------------------*/
function hideImg(){
	document.getElementById("slideshowImg").style.visibility = "hidden";
	
	document.getElementById("slideshowCap").innerHTML = "";
	return;
}