var map;
var directionsPanel;
var directions;

function aeroporto() {
	map = new GMap2(document.getElementById("mapaAeroporto"));
	map.setCenter(new GLatLng(-30.055931, -51.169370), 15);
	directionsPanel = document.getElementById("route");
	directions = new GDirections(map, directionsPanel);
	directions.load("Aeroporto Salgado Filho, Porto Alegre, rs to Av. Ipiranga 6681,porto alegre, rs ");

	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());
}

function rodoviaria() {
	map = new GMap2(document.getElementById("mapaRodoviaria"));
	map.setCenter(new GLatLng(-30.055931, -51.169370), 15);
	directionsPanel = document.getElementById("route");
	directions = new GDirections(map, directionsPanel);
	directions.load("Largo Vespasiano Julioveppo, Porto Alegre, rs to Av. Ipiranga 6681,porto alegre, RS ");

	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());
}

function init() {
	aeroporto();
	rodoviaria();
}

window.onload = init;