function swapImage(img,imgSource){
	if (typeof img == 'string') img = document.getElementById(img);
	img.src = '../images/loadingAnimation.gif';
	img.src = imgSource;
}