$(document).ready(function() {
	$(".hasSubTree").hover(function() {
		$(this).find(".subTreeBox").fadeIn();
	}, function() {
		$(this).find(".subTreeBox").fadeOut();
	});
	$(".expandTrigger").click(function() {
		$(this).parents(".articleExcerpt").toggleClass("articleExpanded").find(".moreArticle").toggle();
		$(this).parents(".articleExcerpt").find(".more").toggle();
		return false;
	})
});

