$(document).ready(function() {
	$("#togglers .content table").wrap('<div />');
	$("#togglers .content div").slideToggle('slow');	
	$('#togglers .content h3').css({'cursor':'pointer'}).click(function() {
		$(this).parent().find('div').slideToggle('slow', (function(h3) { 
			h3.toggleClass('open');
		})($(this)));
	});
	
});

