
if (jQuery("#map").length > 0){
	jQuery('#map').gmap3({
		map: {
		    options:{
		        zoom:15,
		        center: [48.19759, 17.140521],
		        mapTypeId: google.maps.MapTypeId.MAP,
		        mapTypeControl: true,
		        mapTypeControlOptions: {
		          style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
		        },
		        navigationControl: true,
		        scrollwheel: true,
		        streetViewControl: true,
		        disableDefaultUI: false
		    }
		},
		marker:{
		    latLng: [48.19759, 17.140521],
		    options: {
			    icon: new google.maps.MarkerImage(
			        "http://www.dvornalipa.sk/wp-content/uploads/2015/05/cloud.png", new google.maps.Size(72, 72, "px", "px")
			    )
		    }
		 }
		}

	);
}