$(document).ready( function() {
	$('.tablehead').hide();
	$('.tableslide').hide();
	
	$('.divider').click( function() {
		$(this).hide();
		var thead = $(this).next('.tablehead');
		
		thead.divider = this;
		thead.show();
		
		thead.next('.tableslide').slideDown();
	});
	
	$('.tablehead').click( function() {

		$(this).prev('.divider').show();
		$(this).hide();
		
		$(this).next('.tableslide').slideUp();
	});
});