$(document).ready(function() {
	//map.setMapType(G_SATELLITE_MAP);	

	$("#map-footer").click(function() {
		if ("150" == $("#map").height()) {
			$("#map").animate({height:"400px"}, 600);
			$("#resize-map").html("&ndash;");
			$("#resize-map").attr({title:"reduzir mapa"});
		} else {
			$("#map").animate({height:"150px"}, 600);
			$("#resize-map").html("+");
			$("#resize-map").attr({title:"expandir mapa"});
		}
	});
});
