function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
$(document).ready(function(){
	var myLatlng = new google.maps.LatLng(lat,lng);
	var myOptions = {
		zoom: 7,
		center: myLatlng,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
	var marker = new google.maps.Marker({
		position: myLatlng, 
		map: map,
		title:""
	});
	equalHeight($(".equal"));

	var resize = "240x200";
	var url;
	$("img.resizeHike").each(function(){
		url = conf.IMG_SERVER_URL
		+	"&u=" + $(this).attr("src")
		+	"&size=" + resize
		;
		$(this).attr('src', url);
	});

	$("ul#navPageOn > li > a[name=hiking]").css('font-weight', 'bold');
});
