// JavaScript Document

function displayThisPiece(pieceID, totalPieces) {

	$('.piece').hide();	
	$('#piece' + pieceID).show();
}
