$(document).ready(function(){
	if($('#latLng').length)
	{
		$(document).unload(function(){
			GUnload();
		});
		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 = "/images/icon.png";
        blueIcon.iconSize = new GSize(29, 46);
        markerOptions = { icon:blueIcon };
        map.addOverlay(new GMarker(latlng, markerOptions));
     }
}
