var h3rota;
function calcRoute(inicio) {
	jPrompt('Digite o endereço de origem:', '', 'Traçar rota', function(r) {
		if( r ){
			var start = r;
			var end = inicio;
			var request = {
				origin:start,
				destination:end,
				travelMode: google.maps.DirectionsTravelMode.DRIVING
			};
			directionsService.route(request, function(response, status) {
				if (status == google.maps.DirectionsStatus.OK) {
					directionsDisplay.setDirections(response);
					if(h3rota == undefined){
						$('.rotatracada').prepend("<h3 class='hrota'>Rota</h3>");
						h3rota=1;
					}
				}
			});
		}
	});
}
jQuery(document).ready(function(){
$('.estabelecimentosregiao').click(function () { 
	jAlert('Em Breve', 'Estabelecimentos nesta região');
	return false;
});
});
