/* SWAPS AN IMAGE SRC WITH A REMOTE URL */

function loadImg(from,to) {
	document[from].src = to;
}
