$(document).ready(function() {
	$("div.more").hide();
	$("a.more").click(function() {
		$(this).next().slideToggle();
		$(this).toggleClass('open');
		return false;
	});

	$("div.more a.close").click(function() {
		$(this).parent().slideToggle();
		$(this).parent().prev().removeClass('open');
		return false;
	});
	
	$("div.plusinfo").hide();
	$("a.plusinfo").click(function() {
		$(this).next().slideToggle();
		$(this).toggleClass('open');
		return false;
	});

	$("div.plusinfo a.close").click(function() {
		$(this).parent().slideToggle();
		$(this).parent().prev().removeClass('open');
		return false;
	});

});



