Index: trunk/styles/standard/overview.xsl
===================================================================
--- trunk/styles/standard/overview.xsl	(revision 704)
+++ trunk/styles/standard/overview.xsl	(revision 705)
@@ -14,5 +14,7 @@
 
 
-	
+<xsl:variable name="xscale">20</xsl:variable>
+<xsl:variable name="yscale">10</xsl:variable>
+
 	
 	
@@ -77,5 +79,5 @@
 			<xsl:with-param name="inpos" select="$inpos + 1"/>
 			<xsl:with-param name="xpos" select="$xpos"/>
-			<xsl:with-param name="ypos" select="$ypos + 1"/>
+			<xsl:with-param name="ypos" select="$ypos + $yscale"/>
 	    </xsl:call-template>
 	</xsl:if>
@@ -97,16 +99,20 @@
 	<xsl:param name="key"/>
 	<xsl:param name="xpos"/>
+
+
+	<xsl:variable name="xoffset"><xsl:value-of select="number($xpos*$xscale)" /></xsl:variable>
+
 	
 	<!-- header item -->
 	<xsl:variable name="xoutpos">
 		<xsl:choose>
-			<xsl:when test="$xpos &gt;= 100"><xsl:value-of select="$xpos" /></xsl:when>
-			<xsl:when test="$xpos &gt;= 10">0<xsl:value-of select="$xpos" /></xsl:when>
-			<xsl:otherwise>00<xsl:value-of select="$xpos" /></xsl:otherwise>
+			<xsl:when test="$xoffset &gt;= 100"><xsl:value-of select="$xoffset" /></xsl:when>
+			<xsl:when test="$xoffset &gt;= 10">0<xsl:value-of select="$xoffset" /></xsl:when>
+			<xsl:otherwise>00<xsl:value-of select="$xoffset" /></xsl:otherwise>
 		</xsl:choose>
 	</xsl:variable>
 	
 	<xsl:element name="node">
-		<xsl:attribute name="id">-<xsl:value-of select="$xpos" />0000</xsl:attribute>
+		<xsl:attribute name="id">-<xsl:value-of select="$xoffset" />0000</xsl:attribute>
 		<xsl:attribute name="user">overview-creator</xsl:attribute>
 		<xsl:attribute name="visible">true</xsl:attribute>
@@ -128,6 +134,6 @@
 		<xsl:with-param name="key" select="$key"/>
 		<xsl:with-param name="inpos" select="1"/>
-		<xsl:with-param name="xpos" select="$xpos"/>
-		<xsl:with-param name="ypos" select="1"/>
+		<xsl:with-param name="xpos" select="$xoffset"/>
+		<xsl:with-param name="ypos" select="$yscale"/>
     </xsl:call-template>
 </xsl:template>
