$(document).ready(function() {
	
	var tabs = $('#main-tabs-container > ul').tabs();
	
	$('.related-docs').click(function() {
    	tabs.tabs('select', 2);
    	//return false;
	});
						   
	/*// Init tabs on meeting pages.
	$tabs = $('#main-tabs-container').tabs({ fxFade: true, fxSpeed: 'fast' });
	
	// Hide div#body onclick of a.frag-3 on meeting pages.
	$('a.frag-3').click(function() {
		$('#body').hide(250);
	});
	
	// Show div#body onclick of a.frag on meeting pages.
	$('a.frag').click(function() {
		$('#body').show();
	});
	
	/*var $tabs = $('#main-tabs-container').tabs(); // first tab selected

	$('a.link-to-third-tab').click(function() { // bind click event to link
		$tabs.tabs('select', 2); // switch to third tab
		return false;
	});*/
	
});