$(document).ready(function(){
		var latlng = new google.maps.LatLng(53.199876, 5.79959);
		var settings = {
			zoom: 15,
			center: latlng,
			mapTypeControl: true,
			mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
			navigationControl: true,
			navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
			mapTypeId: google.maps.MapTypeId.ROADMAP
			
    };
var map = new google.maps.Map(document.getElementById("map_canvas"), settings);
var companyLogo = new google.maps.MarkerImage('http://www.popfabryk.nl/assets/templates/popfabryk/images/googleMaps.png',
	new google.maps.Size(40,70),
	new google.maps.Point(0,0),
	new google.maps.Point(20,70)
);

var companyPos = new google.maps.LatLng(53.199876, 5.79959);
var companyMarker = new google.maps.Marker({
    position: companyPos,
	icon: companyLogo,
    map: map,
    title:"De Popfabryk"
});
});


