$(document).ready(function() {
	$('#example').dataTable( );
	
	/* Release notes */
	$('div.release_notes ul').toggle();
	$('div.release_notes p').click( function() {
		var iIndex = $('div.release_notes p').index( this );
		$('div.release_notes ul:eq('+iIndex+')').toggle();
	} );
} );