$(document).ready( function() {
//скрипты
	//toggle
	$('.forum-table .toggle').click( function() {
		var h = $(this).parent().find(' > table').height();
		if( $(this).parent().hasClass('forum-table-hidden') ) {
			$(this).parent().animate( {
				height: h+'px'
			}, 500, function() { $(this).removeClass('forum-table-hidden'); });
		} else {
			$(this).parent().animate( {
				height: '40px'
			}, 500, function() { $(this).addClass('forum-table-hidden'); } );		
		}
	});
});
