 function initialize() {
    var myLatlng = new google.maps.LatLng(58.972728,5.731794);
    var myOptions = {
      zoom: 17,
      center: myLatlng,
     mapTypeId: google.maps.MapTypeId.ROADMAP
    }

    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    var contentString = '<div id="content">'+
        '<div id="siteNotice">'+
        '</div>'+
        '<h1 id="firstHeading" class="firstHeading">Verkstedet</h1>'+
        '<div id="bodyContent">'+
        '<p><b>Verkstedet</b>er et kontorfelleskap bestående av frittstående og kreative sjeler. ' +
        'Vi arbeider bredt anlagt innenfor illustrasjon, keramikk, etnologi, grafisk design og webdesign'+
        '</div>'+
        '</div>';
        
    var infowindow = new google.maps.InfoWindow({
        content: contentString,
        maxWidth: 200
    });

    var marker = new google.maps.Marker({
        position: myLatlng,
        map: map,
        title: 'Verkstedet'
    });
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);
    });
  }
function initialize() {

  // Create an array of styles.
  var pinkParksStyles = [
    {
      featureType: "all",
      stylers: [
        { saturation: -80 }
      ]
    },
    {
      featureType: "road.arterial",
	  elementType: "geometry",
      stylers: [
        { hue: "#ff0023" },
        { saturation: 20 }
      ]
    }
  ];

  // Create a new StyledMapType object, passing it the array of styles,
  // as well as the name to be displayed on the map type control.
  var pinkMapType = new google.maps.StyledMapType(pinkParksStyles,
    {name: "Marker veier"});

  // Create a map object, and include the MapTypeId to add
  // to the map type control.
  var mapOptions = {
    zoom: 17,
    center: new google.maps.LatLng(58.972728,5.731794),
    mapTypeControlOptions: {
      mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'pink_parks']
    }
  };
  var map = new google.maps.Map(document.getElementById('map_canvas'),
    mapOptions);

  //Associate the styled map with the MapTypeId and set it to display.
  map.mapTypes.set('pink_parks', pinkMapType);
  map.setMapTypeId('pink_parks');
}

  var myOptions = {
    zoom: 17,
    center: new google.maps.LatLng(58.972728,5.731794),
    mapTypeControl: true,
    mapTypeControlOptions: {
      style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
    },
    zoomControl: true,
    zoomControlOptions: {
      style: google.maps.ZoomControlStyle.SMALL
    },
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var map = new google.maps.Map(document.getElementById("map_canvas"),
      myOptions);
