		$(document).ready(function(){
			
			// Hide all instances of .boxContent, including the very first one.
			$('.boxContent').hide();
			
			// When a visitor clicks on any of the .boxTop divs:
			// 1. Hide all other open .boxContent divs
			// 2. Reveal only the one instance of .boxContent next to the .boxTop that was clicked
			$('.boxTop').click(function(){
				// If the .boxTop the visitor clicks on is already visible, do nothing
				if ($(this).next(':visible').length) {return;}
				$('.boxContent:visible').slideUp("normal");
				$(this).next().slideDown("normal");
			});  
		    		    
		});
