$(document).ready(function(){
	var data = $('#latLng').text().split(',');
	initialize(data[0],data[1]);
});

function initialize(lat,long) {
    if (GBrowserIsCompatible()) { 
        var map = new GMap2(document.getElementById("mapa"));
        var latlng = new GLatLng(lat,long);
        var blueIcon = new GIcon(G_DEFAULT_ICON);
        map.setCenter(latlng, 15);
        blueIcon.image = "http://gmaps-samples.googlecode.com/svn/trunk/markers/blue/blank.png";
        markerOptions = { icon:blueIcon };
        map.addOverlay(new GMarker(latlng, markerOptions));
     }
}

$(document).unload(function(){
	GUnload();
});
