var toggleStatement = function () {
	var statement = document.getElementById('artist_statement');
	if ( statement.style.display == "none" )
	{
		statement.style.display = "";
		statement.style.position = "absolute";
		var dim = getDim(statement);
		var pos = findPos(document.getElementById('piece_container'));
		var dim2 = getDim(document.getElementById('piece_container'));
		statement.style.top = parseInt(pos.y) + 'px';
		statement.style.left = parseInt(pos.x) + Math.floor((parseInt(dim2.width) - parseInt(dim.width))/2) + 'px';
	} else {
		statement.style.display = "none";
	}
};
