function changePic(image,name,price) {
	var xname = document.getElementById("yname");
	var xprice = document.getElementById("yprice");
	var xblurb = document.getElementById("yblurb");
	document["work"].src = "images/" + image;
	xname.firstChild.nodeValue = name;
	xprice.firstChild.nodeValue = price;
	xblurb.firstChild.nodeValue = "";
}
