function initialize() {
    var latlng = new google.maps.LatLng(49.595164,17.242433);
    var myOptions = {
		zoom: 17,
		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("mapa"),
        myOptions);			
	
	var companyImage = new google.maps.MarkerImage('pics/logo-mapa.png',
		new google.maps.Size(100,50),
		new google.maps.Point(0,0),
		new google.maps.Point(50,50)
	);
	
	var companyPos = new google.maps.LatLng(49.595164,17.242433);
	
	var companyMarker = new google.maps.Marker({
		position: companyPos,
		map: map,
		icon: companyImage});
	}
