Index: SPARQLBuilderWWW/web/jsgui.html
===================================================================
--- SPARQLBuilderWWW/web/jsgui.html (revision 137)
+++ SPARQLBuilderWWW/web/jsgui.html (revision 138)
@@ -181,8 +181,15 @@
 	.attr("x", function(d) { return d.x; })
 	.attr("y", function(d) { return d.y; })
-	.text(function(d) { return d.name; })
+	.text(function(d) {
+		var nodetext = d.name
+		var nodesplit1 = nodetext.split("/");
+		var nodesplit2 = nodesplit1[linksplit1.length - 1];
+		var nodesplit3 = nodesplit2.split("#");
+		nodetext = nodesplit3[nodesplit3.length - 1];
+		return nodetext;
+	})
 	.style("fill", function(d) { return '#000000'; })
-	.style("stroke", function(d) { return '#000000'; })
-	.style("stroke-width", function(d) { return '1.5px'; })
+	//.style("stroke", function(d) { return '#000000'; })
+	//.style("stroke-width", function(d) { return '1.5px'; })
 	.style("text-anchor", function(d) { return 'middle'; })
 	.style("pointer-events", "none");
