function makeMapV3(elementid, centerpoint){
  var MY_MAPTYPE_ID = 'hiphop';  
  var myOptions = {
	//zoom:13,
	//minZoom: 2,
	//maxZoom: 19,
	mapTypeControlOptions: {
		mapTypeIds: [google.maps.MapTypeId.ROADMAP, MY_MAPTYPE_ID]
    	},
    	mapTypeId: MY_MAPTYPE_ID,
	center: centerpoint,
	scrollwheel: false
  };

  var stylez = [
    {
    featureType: "administrative",
    elementType: "all",
    stylers: [
      { saturation: -100 }
    ]
    },{
    featureType: "landscape",
    elementType: "all",
    stylers: [
    
      { saturation: -100 }
      
    ]
    },{
    featureType: "poi",
    elementType: "all",
    stylers: [
      { saturation: -100 }
    ]
    },{
    featureType: "road",
    elementType: "all",
    stylers: [
      { visibility: 'simplifed'},
      { saturation: -100 }
    ]
    },{
    featureType: "transit",
    elementType: "all",
    stylers: [
      { saturation: -100 }
    ]
    },{
    featureType: "water",
    elementType: "all",
    stylers: [
      { lightness: 100 },
			{ saturation: -80 }
    ]
    }
  ]; 
  var styledMapOptions = {
    name: "Greyscale",
    minZoom: 2,
    maxZoom: 19,
  };
  
  var jayzMapType = new google.maps.StyledMapType(stylez, styledMapOptions);
  var map = new google.maps.Map(document.getElementById(elementid), myOptions);
  map.mapTypes.set(MY_MAPTYPE_ID, jayzMapType);
  return map;
}

