1jQuery(function()
2{
3	jQuery('.gitlogplugin .seechanges').on('click', function(event)
4	{
5		jQuery(this).next().toggle('show');
6		event.preventDefault();
7	});
8});