$(document).ready(function(){
	$(".showentry").hover(function() {
		$(this).addClass("hover");
	},function() {
		$(this).removeClass("hover");
	});
	$(".moreinfobutton").click(function() {
		if ($(this).parent(".showentry").hasClass("active")) {
			$(this).parent(".showentry").removeClass("active");
			$(this).parent(".showentry").children(".show_rightcol").children(".moreinfo").slideUp();
			$(this).text("More ▼");
		} else {
			$(this).parent(".showentry").addClass("active");
			$(this).parent(".showentry").children(".show_rightcol").children(".moreinfo").slideDown();
			$(this).text("Less ▲");
		}
	});
});