$(function() {
	$('#home .section').each(function(i,val) {
		count = $(this).children('ul').children('li').size();
		if (count > 3) {
			$(this).children('ul').children('li:gt(2)').hide();
			name = $(val).children('h2').html().toLowerCase();
			$(this).append('<a href="#" class="seymour">More '+name+'</a>');
		};
	});
	$('a.seymour').click(function() {
		$(this).parent().children('ul').children('li:gt(2)').show(500);
		$(this).hide();
		return false;
	});
});
