$(document).ready(function() {
	$("a.fancybox").fancybox();
});

function createMarker(lat, lng, index, url, title, map) {
  var icon = 'http://www.google.com/mapfiles/marker' + String.fromCharCode('A'.charCodeAt(0) + index) + '.png';
  
  var marker = new google.maps.Marker({
		position: new google.maps.LatLng(lat, lng),
		title: title,
		map: map,
		icon: icon
	});
	
	google.maps.event.addListener(marker, 'click', function () {
		location.href = url;
	});
}
          
