$(document).ready (function () {
	$('.gallery_box a, a.gallery').fancybox({overlayOpacity: 0.7});
	$('a.gallery.iframe').fancybox({frameWidth: 710, frameHeight: 610, hideOnContentClick: false});
	
	if ($('#map').length == 1) {
		address = $('#map').text();
		$('#map').text('');
		
		var geocoder = new google.maps.Geocoder();
		geocoder.geocode({'address': address}, function (results, status) {
			if (status == google.maps.GeocoderStatus.OK) {
				var opts = {
				  zoom: 16,
				  center: results[0].geometry.location,
				  mapTypeId: google.maps.MapTypeId.ROADMAP
				};
				
				var map = new google.maps.Map(document.getElementById("map"), opts);
				
				var marker = new google.maps.Marker({
					position: results[0].geometry.location,
					map: map
				});
			}
		});
	}
	
	var latLng = new google.maps.LatLng(53.380354, 14.628628);
	var officeOpts = {
		zoom: 16,
		center: latLng,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	var officeMap = new google.maps.Map(document.getElementById("office_map"), officeOpts);
	var officeMarker = new google.maps.Marker({
		position: latLng,
		map: officeMap
	});
	
	
	
    $('#picture_rotate').cycle({
		fx: 'fade'
	});
});

