jQuery().ready(function() {
	$(document).ready(function(){
		if ($('#aachen').size()) {
			var m = $('#aachen')[0];
			var mapstyle = [{
				featureType: "all",
				elementType: "all",
				stylers: [{
					gamma: 1}, {
					lightness: -10}, {
					saturation: -100}, {
					invert_lightness: true
				}]
			}];
			var latlng = new google.maps.LatLng(50.76619, 6.12336);
			var opts = {
				zoom: 12,
				center: latlng,
				disableDefaultUI: true,
				mapTypeId: google.maps.MapTypeId.ROADMAP
			};
			var map = new google.maps.Map(m, opts);
		  	var image = 'beachflag.png';
		  	var myLatLng = new google.maps.LatLng(50.76619, 6.12336);
		  	var beachMarker = new google.maps.Marker({
			  	position: myLatLng,
			  	map: map,
			  	icon: image
		  	});
  			var styledmap = new google.maps.StyledMapType(mapstyle, {
				map: map,
				name: 'EAU'
			});
			map.mapTypes.set('EAU', styledmap);
			map.setMapTypeId('EAU');
		} 
	});	
});
jQuery().ready(function() {
	$(document).ready(function(){
		if ($('#magdeburg').size()) {
			var m = $('#magdeburg')[0];
			var mapstyle = [{
				featureType: "all",
				elementType: "all",
				stylers: [{
					gamma: 1}, {
					lightness: -10}, {
					saturation: -100}, {
					invert_lightness: true
				}]
			}];
			var latlng = new google.maps.LatLng(52.109378, 11.599159);
			var opts = {
				zoom: 12,
				center: latlng,
				disableDefaultUI: true,
				mapTypeId: google.maps.MapTypeId.ROADMAP
			};
			var map = new google.maps.Map(m, opts);
		  	var image = 'beachflag.png';
		  	var myLatLng = new google.maps.LatLng(52.109378, 11.599159);
		  	var beachMarker = new google.maps.Marker({
			  	position: myLatLng,
			  	map: map,
			  	icon: image
		  	});
  			var styledmap = new google.maps.StyledMapType(mapstyle, {
				map: map,
				name: 'EAU'
			});
			map.mapTypes.set('EAU', styledmap);
			map.setMapTypeId('EAU');
		} 
	});	
});
