function init_map() {
	var markerPos = new google.maps.LatLng(42.811231, -70.869608);
	var centerPos = new google.maps.LatLng(42.8127, -70.871608);
	var myOptions = {
		zoom: 16,
		center: centerPos,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	var map = new google.maps.Map(document.getElementById("gmap"), myOptions);
	var marker = new google.maps.Marker({
		position: markerPos
	});
	
	var contentString = "<p><b>Bill Lane Photo Gallery</b><br />"+
	"(At the Brass Lyon)<br />36 Market Square<br />Newburyport, MA 01950<br />"+
	"<a href='http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;q=36+Market+Square,+Newburyport,+MA&amp;sll=42.869925,-70.872803&amp;sspn=1.268168,3.010254&amp;ie=UTF8&amp;z=16&amp;iwloc=addr&amp;iwstate1=dir'>Turn-by-turn Directions</a></p>";
	
	var infowindow = new google.maps.InfoWindow({
		content: contentString
	});
	
	marker.setMap(map);
	infowindow.open(map,marker);
}

$(document).ready(function(){
	if(top.location!=location){top.location.href=document.location.href;}
});


