/*
function zoom(pId) {
	oldImg = $('photos-zoom').select('img').first();
	$(pId).src = 'photos/' + oldImg.id;
	$(pId).id = oldImg.id;
	oldImg.src = 'photos/' + pId;
	oldImg.id = pId;
}
*/

function zoom(pId) {
	var zoomimg = $('photos-zoom').select('img').first();
	zoomimg.src = 'photos/' + pId;
	zoomimg.id = pId;
}