// events.js

$(document).ready(function () {
	$('.show_hidden').click(function() {
		$(this).parent().parent().children('div.hidden').slideToggle('slow');
		return false;
	});
});
