jQuery(document).ready(function() {
	jQuery('#comments .tabs').tabs();
	jQuery('.tabs').tabs({ fx: { height: 'toggle', opacity: 'toggle', speed: 'fast' } });
	
	jQuery('#submenu ul li a.nob').click(function() {
		jQuery(this).next().toggle('slow');
		return false;
	}).next().hide();

});
