// JS Actions for the John P Nelson Associate web site

var map;
var geocoder;

$(document).ready(function(){
	$('.has_sub').click(function(event){
		$(event.target).parent().children("ul").toggle();
		event.preventDefault();
	});

/*	if (GBrowserIsCompatible()) {
       map = new GMap2(document.getElementById("map_canvas"));
			 point = new GLatLng(38.833277, -104.796476);
       map.setCenter(point, 15);
			 marker = new GMarker(point);
       map.addOverlay(marker);
     }
*/
});
