function resizeGmap() {
	$('div#gmapwrapper').css({
		height: $('div.column img').height()+'px'
	});
}

$(window).load(function() {
	if($('div#gmap').length) {
		
		resizeGmap();
		
		var LatLong = new google.maps.LatLng(52.004527,4.359907);
		var MapCenter = new google.maps.LatLng(52.004527,4.359907);
		
		var mapSettings = {
			zoom: 14,
			scrollwheel: false,
			center: MapCenter,
			mapTypeId: google.maps.MapTypeId.ROADMAP
		}
		
		var map = new google.maps.Map(document.getElementById("gmap"), mapSettings);	
		var marker = new google.maps.Marker({ position: LatLong, title:"Bacinol 2"});
	
		marker.setMap(map);
	}
});

$(window).resize(function() {
	if($('div#gmap').length) {
		resizeGmap();
	};
});

