$(onLoad);

function onLoad() {
    $('#debug p').click(function() {
        $('#debug .exception').slideToggle();
    });

	// quick and dirty way to hide all news items after the 3rd
	$('div#events ul li:gt(2)').hide();
}
