// JavaScript Document
function swapImg(img,to) {

	var imagePath='img/';

	img.src=imagePath+to;

}
