--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/integration/js/main.js Wed Oct 03 17:58:05 2012 +0200
@@ -0,0 +1,6 @@
+$(function(){
+ var sum=0;
+ $('.cluster li').each( function(){ sum += $(this).width(); });
+ $('.cluster').width( sum );
+
+});