function initialize() {
	var latlng = new google.maps.LatLng(57.125308, -2.088556);
	var settings = {
		zoom: 16,
		center: latlng,
		mapTypeControl: true,
		scrollwheel: false,
		mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
		navigationControl: true,
		navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
		mapTypeId: google.maps.MapTypeId.SATELLITE
	};
	var map = new google.maps.Map(document.getElementById("map_canvas"), settings);

	var stylez = [{
      featureType: "all",
      elementType: "all",
      stylers: [
		{ invert_lightness: true },
		{ hue: "#ff00f6" },
		{ saturation: -50 },
		{ gamma: 1.3 }
      ]
    }];
	var mapType = new google.maps.StyledMapType(stylez, { name:"Grayscale" });
	map.mapTypes.set('tehgrayz', mapType);
	map.setMapTypeId('tehgrayz');


	var companyImage = new google.maps.MarkerImage('http://northeastcreative.com/wp-content/themes/necrr/images/map/logo.png?2',
		new google.maps.Size(100,50),
		new google.maps.Point(0,0),
		new google.maps.Point(50,50)
	);

	var companyShadow = new google.maps.MarkerImage('http://northeastcreative.com/wp-content/themes/necrr/images/map/logo_shadow.png',
		new google.maps.Size(130,50),
		new google.maps.Point(0,0),
		new google.maps.Point(65, 50));

	var companyPos = new google.maps.LatLng(57.125247, -2.088695
);

	var companyMarker = new google.maps.Marker({
		position: companyPos,
		map: map,
		icon: companyImage,
		shadow: companyShadow,
		title:"Northeast Creative",
		zIndex: 3});



	google.maps.event.addListener(companyMarker, 'click', function() {
		infowindow.open(map,companyMarker);
	});
}

google.maps.event.addDomListener(window, "load", initialize);
