// JavaScript Document

function changePic(image,id,totalImages) {
	
	for(i = 1; i < totalImages; i++) {
	document.getElementById('T'+i).className = "imgt";
	}
	
	document.getElementById('image').src = "our-work/" + image;
	document.getElementById('T'+id).className = "imgt selected";
	
}