$(function(){
		   
	var myLatlng1 = new google.maps.LatLng(52.706348, -2.752623);
	
	var myLatlng2 = new google.maps.LatLng(52.707211, -2.752827);
	
	var myLatlng3 = new google.maps.LatLng(52.707211, -2.752827);
	
	//map options
	var myOptions1 = {
	 disableDefaultUI: true,
	  navigationControl: true,	  
	  navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
	  mapTypeControl: false,
	  scaleControl: false,
	  zoom: 15,
	  center: myLatlng1,
	  mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	var myOptions2 = {
	 disableDefaultUI: true,
	  navigationControl: true,	  
	  navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
	  mapTypeControl: false,
	  scaleControl: false,
	  zoom: 15,
	  center: myLatlng2,
	  mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	var myOptions3 = {
	 disableDefaultUI: true,
	  navigationControl: true,	  
	  navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
	  mapTypeControl: false,
	  scaleControl: false,
	  zoom: 15,
	  center: myLatlng2,
	  mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	var map1 = new google.maps.Map(document.getElementById("map1"), myOptions1);
	var map2 = new google.maps.Map(document.getElementById("map2"), myOptions2);
	var map3 = new google.maps.Map(document.getElementById("map3"), myOptions3);
	
	//info window
	var infowindow1 = new google.maps.InfoWindow(
	{ content: '<b>Wace Morgan Solicitors</b><br />2 Belmont<br />Shrewsbury<br />SY1 1TD',
	  size: new google.maps.Size(20,20)
	});
	
	var infowindow2 = new google.maps.InfoWindow(
	{ content: '<b>College Hill</b><br />3 High Street<br />Shrewsbury<br />SY1 1SP',
	  size: new google.maps.Size(20,20)
	});
	
	var infowindow3 = new google.maps.InfoWindow(
	{ content: '<b>The Law Shop</b><br />3 High Street<br />Shrewsbury<br />SY1 1SP',
	  size: new google.maps.Size(20,20)
	});
	
	//marker	
	var marker1 = new google.maps.Marker({
		position: myLatlng1, 
		map: map1,
		title:"Wace Morgan Solicitors"
	});
	//marker 2	
	var marker2 = new google.maps.Marker({
		position: myLatlng2, 
		map: map2,
		title:"College Hill"
	}); 
	var marker3 = new google.maps.Marker({
		position: myLatlng3, 
		map: map3,
		title:"The Law Shop"
	}); 
	
	//marker click event
	google.maps.event.addListener(marker1, 'click', function() {
		infowindow1.open(map1,marker1);
	});
	//marker click event
	google.maps.event.addListener(marker2, 'click', function() {
		infowindow2.open(map2,marker2);
	});
	//marker click event
	google.maps.event.addListener(marker3, 'click', function() {
		infowindow3.open(map3,marker3);
	});
	/*infowindow1.open(map1,marker1);
	infowindow2.open(map2,marker2);*/

});
