$(function() {
	$(".map").fancybox({
		width: 600,
		height: 400
	});
	
	$(".map").click(function() {
		$("#fancybox-inner").css({
			top: "0px",
			left: "0px",
			width: "620px",
			height: "420px",
			centerOnScroll: true
		});
	});
});
