Index: trunk/src/map/inc/markerClusterer.js
===================================================================
--- trunk/src/map/inc/markerClusterer.js	(revision 7737)
+++ trunk/src/map/inc/markerClusterer.js	(revision 7738)
@@ -685,4 +685,8 @@
 	  mouseOverCluster(markerArray);
       });
+   
+  GEvent.addDomListener(div, "click", function() {
+	  clickCluster(markerArray);
+      });
   this.div_ = div;
 };
Index: trunk/src/map/inc/node_info.php
===================================================================
--- trunk/src/map/inc/node_info.php	(revision 7737)
+++ trunk/src/map/inc/node_info.php	(revision 7738)
@@ -80,53 +80,28 @@
 elseif($_GET['type'] == "cluster")
 {
-$markerTitles = unserialize($_GET['markers']);
+	$markerTitles = unserialize($_GET['markers']);
+	
+	echo <<<EOF
+	<div id="nodeinfo">
+		<h1>Nodes:</h1>
+		<h2>
+		Lijst met nodes in deze cluster<br/>
+		<div id="clusterlist">
+		<select multiple>
+EOF;
+	foreach($markerTitles as $marker)
+	{
+		echo "<option value='".$marker."'>".$marker."</option>";
+	}
 
-	if($view == "beheerder")//Display part for beheerder view of a cluster node
-	{
-		echo <<<EOF
-		<div id="nodeinfo">
-			<h1>Nodes:</h1>
-			<h2>
-			Lijst met nodes in deze cluster<br/>
+	echo <<<EOF
+		</select><br/>
+		</div>
+		</h2>
+	</div>
+	<div id="timestamp">
+		Laatste update: 15:42 <br/>
+		Do 25 maart
+	</div>
 EOF;
-		foreach($markerTitles as $marker)
-		{
-			echo "".$marker."<br/>";
-		}
-		
-		echo <<<EOF
-			BEHEERDERSVIEW
-			</h2>
-		</div>
-		<div id="timestamp">
-			Laatste update: 15:42 <br/>
-			Do 25 maart
-		</div>
-EOF;
-	}
-	elseif($view == "gebruiker")//Display part for gebruiker view of a cluster node
-	{
-		echo <<<EOF
-		<div id="nodeinfo">
-			<h1>Nodes:</h1>
-			<h2>
-			Lijst met nodes in deze cluster<br/>
-			<select multiple size="5" width="15">
-EOF;
-		foreach($markerTitles as $marker)
-		{
-			echo "<option value='".$marker."'>".$marker."</option>";
-		}
-		
-		echo <<<EOF
-			</select><br/>
-			GEBRUIKERSVIEW
-			</h2>
-		</div>
-		<div id="timestamp">
-			Laatste update: 15:42 <br/>
-			Do 25 maart
-		</div>
-EOF;
-	}
 }	
Index: trunk/src/map/inc/nodemapWL.js
===================================================================
--- trunk/src/map/inc/nodemapWL.js	(revision 7737)
+++ trunk/src/map/inc/nodemapWL.js	(revision 7738)
@@ -89,4 +89,10 @@
 }
 
+//Our click function for Cluster nodes. 'markers' is an array containing all markers within the cluster
+function clickCluster(markers)
+{
+	
+}
+
 
 //Code from w3schools. http://www.w3schools.com/dom/dom_http.asp
Index: trunk/src/map/style/stylesheet.css
===================================================================
--- trunk/src/map/style/stylesheet.css	(revision 7737)
+++ trunk/src/map/style/stylesheet.css	(revision 7738)
@@ -21,4 +21,14 @@
 height: 243px;
 width: 100%;
+}
+
+#clusterlist {
+margin-top: 10px;
+overflow: hidden;
+}
+
+#clusterlist select {
+width: 100%;
+height: 130px;
 }
 
