function MapControls()
{
	this.zoomControls = function()
	{
		var pos = new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(50, 50));
		var mapZoom = $("#map_zoom_control").get(0);
		pos.apply(mapZoom);
		applicationObject.mapObject.map.getContainer().appendChild(mapZoom);
		mapZoom.style.display = 'inline';
	}
}