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