$(document).ready(function(){
	$('#event-map-navigation a').click(function(event){
		event.preventDefault();
		var var_loc = $(this).attr('class');
		$.ajax({

			type: "GET",
			url: "assets/includes/ajax_events.php",
			data: "location="+var_loc,
			success: function(html){
				$("#event-info h2").fadeOut('slow');
				$("#event-info img").fadeOut('slow');
				$("#event-info p").fadeOut('slow', function(){
					$("#event-info").html(html);
				});
				
			}
		});
	});
	
	$('#event-map-navigation').hover(
		function(){
			$('.event-help').fadeIn('fast');
		},
		 
		function(){
			$('.event-help').fadeOut('fast');
	});
	
	$('#event-map-navigation').append($("<div class='event-help'><p>Click on a snowflake to see what's happening in each area. &raquo;</p></div>"));
});

