$(function() {
	$('#projects dl').mouseover(function() {
		$(this).parent().addClass('hover');
		$(this).children('dt').addClass('hover');
	});
	$('#projects dl').mouseout(function() {
		$(this).parent().removeClass('hover');
		$(this).children('dt').removeClass('hover');
	});
	$('#projects dl').focus(function() {
		$(this).children('dt').addClass('focus');
	});
	$('#projects dl').blur(function() {
		$(this).children('dt').removeClass('focus');
	});

	$('div.feature div.feedcontainer h5').each(function() {

		$(this).css({cursor: 'pointer'});
		$(this).click(function() {
			$(this).parent().siblings().addClass('inactive');
			$(this).parent().toggleClass('inactive');
		});
	});
	$('div.feature div.feedcontainer').not(':first').addClass('inactive');
});
