// JavaScript Document

//*****************************//
//Westside Store Map//
//*****************************//

function initialize() {
    var latlng = new google.maps.LatLng(44.049862,-121.332737);
    var myOptions = {
      zoom: 14,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
	  
	};
	
	var map = new google.maps.Map(document.getElementById("map"),
        myOptions);
		
	var image = 'images/site2.0/mapLogo.png';
  var myLatLng = new google.maps.LatLng(44.049862,-121.332737);
  var Marker = new google.maps.Marker({
      position: myLatLng,
      map: map,
	  title:'Bend Pet Express - Westside',
      icon: image
	 
  });
	
//*****************************//
//Eastside Store Map//
//*****************************//

	  var latlngRight = new google.maps.LatLng(44.054157,-121.265792);
	  var myOptionsRight = {
      zoom: 14,
      center: latlngRight,
      mapTypeId: google.maps.MapTypeId.ROADMAP
   };
    
		
	var mapRight = new google.maps.Map(document.getElementById("mapRight"),
        myOptionsRight);
		
	var imageRight = 'images/site2.0/mapLogo.png';
  var myLatLngRight = new google.maps.LatLng(44.054157,-121.265792);
  var Marker = new google.maps.Marker({
      position: myLatLngRight,
      map: mapRight,
	  title:'Bend Pet Express - Eastside',
      icon: imageRight
  });
}
