function initialize(id_mapa,mapa,latitude,longitude,texto) {
	var latlng = new google.maps.LatLng(latitude, longitude);
	var myOptions = {
  		zoom: 17,
  		center: latlng,
  		mapTypeId: google.maps.MapTypeId.HYBRID
	};
	id_mapa = new google.maps.Map(document.getElementById(mapa), myOptions);
	
	var marker = new google.maps.Marker({
      position: latlng, 
      map: id_mapa, 
      title: texto
  	});
    
    
    
    //map.addOverlay(createMarker(new GLatLng(latitude,longitude),"teste"));
}

function createMarker(latlng, texto) {
	var marker = new GMarker(latlng);
	marker.value = texto;
	GEvent.addListener(marker,"click", function() {
		var myHtml = "<b>#" + texto + "</b><br/>";
		map.openInfoWindowHtml(latlng, myHtml);
	});
	return marker;
}



