$(document).ready(function() {
	$('.slidingElement table').each(function() {
		var item = $(this);
		if ($(item).children('caption').length > 0) {	
			var caption = $(this).children('caption').html();
			$(this).before('<p class="tableToggle" title="'+caption+'">'+caption+'</p>');
			
			$(this).parent().addClass('hasChildren');
			$(this).children('caption').hide();
			$(this).hide();
		}
	});
	
	$('.hightlightHeader').toggle().toggle();
	
	$('.slidingElement .tableToggle').click(function() {
		$(this).next().toggle();
		$('.hightlightHeader').toggle().toggle();
	});
});