$(document).ready(function() {
	$('#view-large-map').click(function(e){
   	e.preventDefault();
   	$(this).hide();
   	$('#map').fadeOut("slow");
   	$('#map2').fadeIn("slow");
   	$('#go-to-kenora').show("slow");
   	$('#go-to-morson').show("slow");
   	$('#go-to-nestor-falls').show("slow");
   	$('#go-to-sioux-narrows').show("slow");
   });
});