function change_src(obj, new_src){
	pic = new Image;
	pic.src = new_src;
	obj.src = pic.src;
}

