$(document).ready(function() {
	var engine = new Engine();
	
	$('h3').hide();
	$('.content').hide();
	
	$('h2').click(function() {
		$('h3').hide();
		$('.content').hide();
		$(this).nextUntil('h2').filter('h3').show();
	});

	$('h3').click(function() {
		$('.content').hide();
		$(this).next('div').show();
	});
});
