function show_toc_menu(){
	$("#toc_flyout").slideDown().show();
}

$(document).ready(function(){
	$("table.toolkit_table").attr({'cellspacing':'0','cellpadding':'0'});
	$("table.toolkit_table tr:first").addClass('heading');

	$("#toc_flyout").hover(function() {
	}, function(){
		$("#toc_flyout").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
	});


	$("#toc_menu a,#toc_arrow a").click(function(){
		show_toc_menu();
	});
});



