Index: trunk/src/map/inc/overlay.js
===================================================================
--- trunk/src/map/inc/overlay.js	(revision 7738)
+++ trunk/src/map/inc/overlay.js	(revision 7740)
@@ -8,6 +8,6 @@
 var pos;
 var point;
+var range = 500;
 
-/*
 	function nodeAdd() {
 	  if (GBrowserIsCompatible()) {
@@ -21,6 +21,15 @@
 			});
 
+	  //Added mouseover listener that calls on our mouseOver function when the mouse moves over a marker on the map
+        GEvent.addListener(marker, "mouseover", function() {
+          map.addOverlay(cirkel);;
+        });
+		
+		        GEvent.addListener(marker, "mouseout", function() {
+          map.removeOverlay(cirkel);
+        });
 
-		
+
+	
 
       GPolygon.Shape = function(point,r1,r2,r3,r4,rotation,vertexCount,  strokeColour,strokeWeight,Strokepacity,fillColour,fillOpacity,opts,tilt) {
@@ -56,11 +65,20 @@
 	  
 	  //   http://econym.org.uk/gmap/eshapes.htm voorbeeld.
+	  // de locatie van de cirkel
 	        var point = new GLatLng(52.162687, 4.493294);
-      map.addOverlay(GPolygon.Circle(point,500,"#000000",1,1,"#00ff00",0.5));
+									// locatie, doorsnee (in meters), kleur omtrek, dikte omtrek, doorzichtigheid opvulling, kleur opvulling, doorzichtigheid.
 			map.addOverlay(marker);
+		cirkel = new GPolygon.Circle(point,range,"#000000",1,1,"#00ff00",0.5)
 		
 	  }
 	}
 	
+		//Our mouseover function
+	/*function mouseOver(dekking)
+	{
+		//For now we only post the id(We made ourself in kmlHandler) and the name of the node
+		      map.addOverlay(GPolygon.Circle(point,500,"#000000",1,1,"#00ff00",0.5));
+		//We will replace this function with a httprequest to a php file in the future
+	}
 	*/
 	
@@ -69,2 +87,5 @@
 	
 	
+	
+	
+	
