// JavaScript Document

/*
function showPic(whichPic) {
	var source = whichPic.getAttribute("href");
	var placeholder = document.getElementById("placeholder");
	placeholder.setAttribute("src",source);
	var text = whichPic.getAttribute("title");
	var description = document.getElementById("description");
	description.firstChild.nodeValue = text;
}*/

function openCloseWallbed(whichPic) {
	var source = whichPic.getAttribute("src");
	var placeholder = document.getElementById("wallbed_action");
	var state = whichPic.getAttribute("class");
	if (state == "closed") {
		placeholder.setAttribute("class","open");
		placeholder.setAttribute("src","/_images/photos/wallbed_open.jpg");
	} else {
		placeholder.setAttribute("class","closed");
		placeholder.setAttribute("src","/_images/photos/wallbed_closed.jpg");
	}
}
