$(document).ready( function() {
	initialize();
	
	function initialize() {
		//create the saco/biddeford location map
	   var latlng = new google.maps.LatLng(43.480655,-70.481973);
	   var myOptions = {
	     zoom: 14,
	     center: latlng,
	     mapTypeId: google.maps.MapTypeId.ROADMAP,
	     mapTypeControl: false
	   };
	   var biddefordMap = new google.maps.Map(document.getElementById("biddefordSacoMap"), myOptions);
	   //create the marker for s/b
	   var biddefordMarker = new google.maps.Marker({  
		  	position: new google.maps.LatLng(43.480655,-70.481973),  
		   	map: biddefordMap,
		   	title: 'Molleur Law Offices - Biddeford/Saco Location'
	   }); 
	   
	   //create the Portland location map
	   var latlng2 = new google.maps.LatLng(43.655645,-70.261503);
	   var myOptions2 = {
	     zoom: 14,
	     center: latlng2,
	     mapTypeId: google.maps.MapTypeId.ROADMAP,
	     mapTypeControl: false
	   };
	   var portlandMap = new google.maps.Map(document.getElementById("portlandMap"), myOptions2);
	   //create the marker for portland
	   var portlandMarker = new google.maps.Marker({  
		  	position: new google.maps.LatLng(43.655645,-70.261503),  
		   	map: portlandMap,
		   	title: 'Molleur Law Offices - Portland Location'
	   }); 
	}	
	
});


