function showImg(div,filnavn) {
	img=div.parentNode.parentNode.childNodes[1];
	img.src="productPics/thb/"+filnavn;
	for (i=0;i<div.parentNode.getElementsByTagName("div").length;i++) {
		div.parentNode.getElementsByTagName("div")[i].style.textDecoration="underline";
	}
	
	div.style.textDecoration="none";
}

