// imageSwap.js
// Swaps the main image with the thumbnail being clicked

function imageSwap(new_img){
	//alert(new_img);
	img = document.getElementById('mainImage');
	img.src = new_img;
}

