var Control_Zoom_IN = function() {	};
	Control_Zoom_IN.prototype = new GControl(true);
	Control_Zoom_IN.prototype.initialize = function(map) {
		var container = document.createElement("div");
		container.innerHTML = '<img src="http://www.nevadomarbella.com/myimages/in.png";" >';
		container.style.width='30px';
		container.style.height='30px';
		GEvent.addDomListener(container, "click", function() { 
			map.zoomIn();
		});
		map.getContainer().appendChild(container);
		return container;
};
Control_Zoom_IN.prototype.getDefaultPosition = function() {
	return new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(5, 10));
}

var Control_Zoom_OUT = function() {	};
	Control_Zoom_OUT.prototype = new GControl(true);
	Control_Zoom_OUT.prototype.initialize = function(map) {
	var container = document.createElement("div");
	container.innerHTML = '<img src="http://www.nevadomarbella.com/myimages/out.png";" >';
	container.style.width='30px';
	container.style.height='30px';
	GEvent.addDomListener(container, "click", function() {
		map.zoomOut();
	});
	map.getContainer().appendChild(container);
	return container;
};
Control_Zoom_OUT.prototype.getDefaultPosition = function() {
	return new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(35, 10));
}

var Control_MAPA_SATELITE = function() {};
	Control_MAPA_SATELITE.prototype = new GControl(true);
	Control_MAPA_SATELITE.prototype.initialize = function(map) {
	var container = document.createElement("div");
	container.innerHTML = '<img src="http://www.nevadomarbella.com/myimages/satelite'+idioma+'.png";" >';
	container.style.width='30px';
	container.style.height='30px';
	container.style.left='384px';
	GEvent.addDomListener(container, "click", function() {
		map.setMapType(G_SATELLITE_MAP);
	});
	map.getContainer().appendChild(container);
	return container;
};
Control_MAPA_SATELITE.prototype.getDefaultPosition = function() {
	return new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(130, 10));
}

var Control_MAPA_DIBUJO = function() {	};
	Control_MAPA_DIBUJO.prototype = new GControl(true);
	Control_MAPA_DIBUJO.prototype.initialize = function(map) {
	var container = document.createElement("div");
	container.innerHTML = '<img src="http://www.nevadomarbella.com/myimages/map'+idioma+'.png";" >';
	container.style.width='30px';
	container.style.height='30px';
	container.style.left='476px';
	GEvent.addDomListener(container, "click", function() {
		map.setMapType(G_NORMAL_MAP);
	});
	map.getContainer().appendChild(container);
	return container;
};
Control_MAPA_DIBUJO.prototype.getDefaultPosition = function() {
	return new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(50, 10));
}