$(document).ready(function() {
		$(".expand_button").click(function() {
			$(this).siblings(".more_content").slideToggle("slow");
			if ($(this).attr("id") == "expand") {
				$(this).attr("id", "contract");
			} else {
				$(this).attr("id", "expand");
			}
		});
 	});
