function switchpict(img, grd) 
{
	var old_img = img;
	var new_img = old_img.replace("th_", "");
	document.getElementById(grd).src = new_img;
}
function switchpictV(img, grd) 
{
	document.getElementById(grd).src = img;
}

