$(document).ready(function() {
	$('.section').hide();
	
	$('h2').click(function() {
		if($(this).next('.section').is(':hidden')) {
			$(this).next('.section').show('slow');
		} else {
			$(this).next('.section').hide('slow');
		}
	});
	
	$('h2').hover(function() {
		$(this).addClass('h2hover');						   
	}, function() {
		$(this).removeClass('h2hover');
	});
	
	$('img').hover(function() {
		$(this).addClass('imghover');						
	}, function() {
		$(this).removeClass('imghover');
	});
	
	$('.closeSection').click(function() {
		$(this).parent().parent().hide('slow');
	});
});