function swapImg(img,alt) {
	document.getElementById(img).src = 'images/' + alt;
};

function showHide(l,s) {
	document.getElementById(l).style.visibility = s;
};
