function replaceImg(pic,obj){
	
	var idobj = document.getElementById(obj);
	var picnew = pic.replace("_thumb","_big");
	
	idobj.src = picnew;
}
