// JavaScript Document
function showPic(whicpic){
	var source = whicpic.getAttribute("href");
	var placeholder = document.getElementById("placeholder");
	placeholder.setAttribute("src",source);
	
	//var text = whicpic.getAttribute("title");
	//var description = document.getElementById("description");
	//var text2 = whicpic.childNodes[0].nodeValue;
	//alert(whicpic.childNodes[0]);
	//description.childNodes[0].nodeValue = text;
	//description.childNodes[2].nodeValue = text2;
	//alert(description.childNodes[1]);
	//alert(description.childNodes.length);
	
}





