function swapImage (id, path){
	obj = document.getElementById(id);
	obj.src= path;
	obj.repaint();
}