// JavaScript Document



$(document).ready(function() {
						   
	$('.top-fox-stories').show();
	
	$('.closing-delays').hide();
	
	$('.community-calendar').hide();
	
	$('#top-fox-stories').click(function() {
			
		$('.closing-delays').hide();
		
		$('.community-calendar').hide();
		
		$('.top-fox-stories').fadeIn();
		
		$(this).attr('src', 'images/top-fox-stories2.jpg');
		
		$('#closing-delays').attr('src', 'images/closing-delays1.jpg');
		
		$('#community-calendar').attr('src', 'images/calendar1.jpg');
		
	}); // end "click"
	
	$('#closing-delays').click(function() {
										 
		$('.top-fox-stories').hide();
		
		$('.community-calendar').hide();
		
		$('.closing-delays').fadeIn();
		
		$(this).attr('src', 'images/closing-delays2.jpg');
		
		$('#top-fox-stories').attr('src', 'images/top-fox-stories1.jpg');
		
		$('#community-calendar').attr('src', 'images/calendar1.jpg');
		
	}); // end "click"
	
	$('#community-calendar').click(function() {
										 
		$('.top-fox-stories').hide();
		
		$('.closing-delays').hide();
		
		$('.community-calendar').fadeIn();
		
		$(this).attr('src', 'images/calendar2.jpg');
		
		$('#closing-delays').attr('src', 'images/closing-delays1.jpg');
		
		$('#top-fox-stories').attr('src', 'images/top-fox-stories1.jpg');
		
	}); // end "click"
						   
}); // end "document ready"
