    function initialize_kiev(contentString_kiev) {    	var contentString = contentString_kiev;
		var myLatlng = new google.maps.LatLng(50.439834, 30.520446);
		var myOptions = {
		  zoom: 16,
		  center: myLatlng,
		  mapTypeId: google.maps.MapTypeId.ROADMAP
		}
		var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
		var infowindow = new google.maps.InfoWindow({
		    content: contentString,
		    position: myLatlng
		});
		infowindow.open(map);
    }

    function initialize_lviv(contentString_lviv) {
    	var contentString = contentString_lviv;
		var myLatlng = new google.maps.LatLng(49.810355, 24.003681);
		var myOptions = {
		  zoom: 16,
		  center: myLatlng,
		  mapTypeId: google.maps.MapTypeId.ROADMAP
		}
		var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
		var infowindow = new google.maps.InfoWindow({
		    content: contentString,
		    position: myLatlng
		});
		infowindow.open(map);
    }

	$(function() {		// maps start
		$('#link-to-map-kiev').fancybox({
				'width'         	: '600px',
				'height'        	: '500px',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titleShow'			: false,
				'onComplete'		: function(){						initialize_kiev(contentString_kiev);
				}
		});
		$('#link-to-map-lviv').fancybox({
				'width'         	: '600px',
				'height'        	: '500px',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titleShow'			: false,
				'onComplete'		: function(){
						initialize_lviv(contentString_lviv);
				}
		});		// maps finish				// vids on main start		$('.vids').click(function(){			var layer = $(this).attr('data');			$('.vids_layer').hide();			$('#' + layer).show();			$('.vids').each(function(){				$(this).removeClass('active');			});			$(this).addClass('active');			return false;		});		// vids on main finish
   	});
