$(document).ready(function() {
	$("a.exceptionlink").toggle(function() {
		$(".exceptiondescription").animate({ height: 'show', opacity: 'show' }, 'slow');
	}, function(){
		$(".exceptiondescription").animate({ height: 'hide', opacity: 'hide' }, 'slow');
	});
  
  $('table#statistics-overview').tablesorter({
    'widgets': ['zebra'],
    'sortList': [[1,1]]
  });
});
