function coordCursor(){
	coordCursor.prototype = new GControl();
	coordCursor.prototype.initialize = function (map){
		var container = document.createElement("div");
		container.style.backgroundColor = "#000000";
		container.style.filter = "alpha(opacity=40)";
		container.style.MozOpacity=".4";
		var lngDiv = document.createElement("div");
		this.setTextStyle_(lngDiv);
		container.appendChild(lngDiv);
		lngDiv.appendChild(document.createTextNode(""));
		GEvent.addListener(map,"mousemove", function(point) {
			lngDiv.firstChild.data = "\u00A0LNG\u00A0:\u00A0 "+ point.lng().toFixed(6) + "\u00A0\u00A0\u00A0\u00A0LAT\u00A0:\u00A0"+ point.lat().toFixed(6)+ "\u00A0";
		});
		GEvent.addListener(map,"mouseout", function(point) {
			lngDiv.firstChild.data = "";
		});
		map.getContainer().appendChild(container);
		return container;
	}
	coordCursor.prototype.getDefaultPosition = function() 
	{  
		return new GControlPosition(G_ANCHOR_BOTTOM_LEFT, new GSize(3, 40));
	}
	coordCursor.prototype.setTextStyle_ = function(text) 
	{  
		text.style.color = "#fff";
		text.style.fontSize="12px";
		text.style.fontVariant="small-caps";
		text.style.fontFamily="Calibri";
		text.style.textAlign="justify";
		text.style.filter = "alpha(opacity=100)";
		text.style.MozOpacity="1";
	}
}