$(document).ready(function() {

	// hide entry_body after the first one
	$(".entry_list .entry_body:gt(0)").hide();

	// hide message after the 20th
	$(".entry_list:gt(19)").hide();

	// toggle entry_body
	$(".entry_head").click(function() {
		$(this).next(".entry_body").slideToggle(500)
		return false;
	});

	// collapse all
	$(".collpase_all").click(function() {
		$(".entry_body").slideUp(500)
		return false;
	});

	// show all
	$(".show_all").click(function() {
		$(".entry_body").slideDown(500)
		return false;
	});

});
