function initialize()
{
	var latitude = 54.189800;
	
	var longitude = 16.173770;

	var location = new google.maps.LatLng(latitude, longitude);

	var options = {
		zoom: 14,
		maxZoom: 17,
		minZoom: 12,
		disableDefaultUI: true,
		mapTypeId: google.maps.MapTypeId.ROADMAP,
		center: location,
		zoomControl: true
	}
	
	var styles = [
		{
			featureType: 'all',
			elementType: 'all',
			stylers: [
				{ saturation: -100 }
			]
		}
	]

	var map = new google.maps.Map(document.getElementById("map"), options);

	var styledMapOptions = {
		name: 'Monochrome'
	}

	var monochromeMapType = new google.maps.StyledMapType(styles, styledMapOptions);

	map.mapTypes.set('monochrome', monochromeMapType);
	map.setMapTypeId('monochrome');

	var marker = new google.maps.Marker(
	{
		icon: 'images/mapa_logo.png',
		map: map,
		position: location 
	});
}
