$(function() {
      
});

function swapIMG() {
				var rndNum = Math.floor(Math.random()*10) + 1;
				var imagePath = "images/";
				var imageExt = ".jpg";
				
				$("#swap").attr('src', imagePath + rndNum + imageExt).show();
}