$(document).ready(function() {
	$("#mapa").hide(0);
	$("#mapa_switch").click(function() {
		$("#mapa").toggle("slow");	
	});
	
	if (GBrowserIsCompatible()) {
	    var map = new GMap2(document.getElementById("map"));
	    if (map != null) {
	        //map.setCenter(new GLatLng(37.4419, -122.1419), 13);
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		map.setCenter(new GLatLng(0, 0), 13);
	    }		    
	};
});


