function swapImage(id,src) {
	img= document.getElementById(id);
	newimg= new Image();
	newimg.src= src;
	img.src= newimg.src;
}
