$(function () {
	$('body.resources div.resources h2').addClass('js').next('div.category').hide();
	$('body.resources div.resources h2').toggle(function () {
	$('body.resources div.resources h2 + div.category').hide();
		$(this).next('div.category').show();
		$(this).addClass('active');
	}, function () {
		$(this).next('div.category').hide();
		$(this).removeClass('active');
	}).hover(function () {
		$(this).addClass('hover');
	}, function () {
		$(this).removeClass('hover');
	});
});