//	A simple image gallery.
//	You'll need a placeholder image with the id "placeholder".
//	You'll also need an element with the id "desc" to hold the descriptive text.
//	Feel free to alter this as you see fit.
//	All I ask is that you drop me a line to let me know where you use it.
//	Email me: jeremy at adactio.com

function showPic (whichpic) { 
	if (document.getElementById) { 
	    var photo = document.getElementById('i-photo');
		photo.src = whichpic.href; 
		return false; 
	} else { 
		return true; 
	} 
}