$(document).ready(function(){
	$("a.contato").addClass("current");

	$("a.modal").fancybox({
		'hideOnContentClick': false, frameWidth: 700, frameHeight: 500
	});

	$("#map_canvas").hide();
	//carrega o mapa
	initialize();
});

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

function initialize()
{
	if (GBrowserIsCompatible())
	{
		var map = new GMap2(document.getElementById("map_canvas"), {size: new GSize(700,500)});
		map.setCenter(new GLatLng(-20.479044,-54.601976), 18);
		map.setMapType(G_HYBRID_MAP);
		map.addOverlay(new GMarker(new GLatLng(-20.479044,-54.601976)));
	}
}